summaryrefslogtreecommitdiff
path: root/apps/misc.h
diff options
context:
space:
mode:
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