1
0
Fork 0
forked from len0rd/rockbox

Moved settings_parseline() to misc.c

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4824 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2004-07-05 11:15:50 +00:00
parent afd7421a4c
commit 26440c9fd6
3 changed files with 40 additions and 33 deletions

View file

@ -16,6 +16,8 @@
* KIND, either express or implied.
*
****************************************************************************/
#ifndef MISC_H
#define MISC_H
/* The point of this function would be to return a string of the input data,
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);
/* Save a .BMP file containing the current screen contents. */
void screen_dump(void);
#endif
bool settings_parseline(char* line, char** name, char** value);
#endif