diff options
author | Rob Landley <rob@landley.net> | 2016-01-22 21:35:48 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-01-22 21:35:48 -0600 |
commit | cf0f037ac861a3f4fd877e79f3e53877a446f722 (patch) | |
tree | d141c65d6c3563d271e8049f8229114797f9f86e /lib/lib.h | |
parent | 83c6d225795f94840b6acbba0955c65ef0340e7e (diff) | |
download | toybox-cf0f037ac861a3f4fd877e79f3e53877a446f722.tar.gz |
Factor out insanitize() from seq.c to next_printf() in lib.
Diffstat (limited to 'lib/lib.h')
-rw-r--r-- | lib/lib.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -196,6 +196,7 @@ int yesno(int def); int qstrcmp(const void *a, const void *b); void create_uuid(char *uuid); char *show_uuid(char *uuid); +char *next_printf(char *s, char **start); #define HR_SPACE 1 // Space between number and units #define HR_B 2 // Use "B" for single byte units |