blob: 73159b9449c4dd6f3fd791b2cb4c03fa638cd6cf [file] [log] [blame]
Daniel Lezcano88b38e32011-06-15 15:45:12 +02001/*******************************************************************************
2 * Copyright (C) 2011, Linaro Limited.
3 *
4 * This file is part of PowerDebug.
5 *
6 * All rights reserved. This program and the accompanying materials
7 * are made available under the terms of the Eclipse Public License v1.0
8 * which accompanies this distribution, and is available at
9 * http://www.eclipse.org/legal/epl-v10.html
10 *
11 * Contributors:
12 * Daniel Lezcano <daniel.lezcano@linaro.org> (IBM Corporation)
13 * - initial API and implementation
14 *******************************************************************************/
15#ifndef __UTILS_H
16#define __UTILS_H
17
18extern int file_read_value(const char *path, const char *name,
19 const char *format, void *value);
Shaojie Sun8ac4a2e2013-07-29 20:11:46 +080020extern int file_write_value(const char *path, const char *name,
21 const char *format, void *value);
Daniel Lezcano88b38e32011-06-15 15:45:12 +020022
23
24#endif