summaryrefslogtreecommitdiff
path: root/apps/misc.h
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2004-07-05 11:15:50 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2004-07-05 11:15:50 +0000
commit26440c9fd64d8c147f02ec4efb376ccb6dbb2783 (patch)
tree76947ad61e0bbb8c070d20bc2cd5c5b832c2c360 /apps/misc.h
parentafd7421a4c705cb928a5ecb0416d9f2f9c42c7b5 (diff)
downloadrockbox-26440c9fd64d8c147f02ec4efb376ccb6dbb2783.tar.gz
rockbox-26440c9fd64d8c147f02ec4efb376ccb6dbb2783.zip
Moved settings_parseline() to misc.c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4824 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/misc.h')
-rw-r--r--apps/misc.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/misc.h b/apps/misc.h
index 329c62750c..df9eba8e55 100644
--- a/apps/misc.h
+++ b/apps/misc.h
@@ -16,6 +16,8 @@
16 * KIND, either express or implied. 16 * KIND, either express or implied.
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19#ifndef MISC_H
20#define MISC_H
19 21
20/* The point of this function would be to return a string of the input data, 22/* The point of this function would be to return a string of the input data,
21 but never longer than 5 columns. Add suffix k and M when suitable... 23 but never longer than 5 columns. Add suffix k and M when suitable...
@@ -35,3 +37,7 @@ int read_line(int fd, char* buffer, int buffer_size);
35/* Save a .BMP file containing the current screen contents. */ 37/* Save a .BMP file containing the current screen contents. */
36void screen_dump(void); 38void screen_dump(void);
37#endif 39#endif
40
41bool settings_parseline(char* line, char** name, char** value);
42
43#endif