diff options
author | Rob Landley <rob@landley.net> | 2007-01-20 18:04:20 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-01-20 18:04:20 -0500 |
commit | 24d1d45ee901e74b3388e7053543eb16aea09ada (patch) | |
tree | e856611181383d9ca55f0d190b1de9941274ee1b /lib/lib.h | |
parent | 125a2c74f2ef9438b09930b208dd88bf7538bac8 (diff) | |
download | toybox-24d1d45ee901e74b3388e7053543eb16aea09ada.tar.gz |
Add "echo". Has -n and -e (but not \0123 yet).
Diffstat (limited to 'lib/lib.h')
-rw-r--r-- | lib/lib.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -38,6 +38,9 @@ void xrealloc(void **ptr, size_t size); void *xstrndup(char *s, size_t n); void *xstrdup(char *s); char *xmsprintf(char *format, ...); +void xprintf(char *format, ...); +void xputc(char c); +void xflush(void); void xexec(char **argv); void xaccess(char *path, int flags); int xcreate(char *path, int flags, int mode); |