diff options
author | Rob Landley <rob@landley.net> | 2007-12-27 21:36:33 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-12-27 21:36:33 -0600 |
commit | 354834114662d369ce96cac5e787623df1cc68f8 (patch) | |
tree | e36dce93f8aef65d1770ca04cf4e02f9701dcf21 /lib/lib.h | |
parent | d3236c1fd785b27da00dd704ade7992432dd7644 (diff) | |
download | toybox-354834114662d369ce96cac5e787623df1cc68f8.tar.gz |
Make patch's file add actually work, including directory creating and
understanding zero-context hunks.
Diffstat (limited to 'lib/lib.h')
-rw-r--r-- | lib/lib.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -73,6 +73,7 @@ void xwrite(int fd, void *buf, size_t len); char *xgetcwd(void); void xstat(char *path, struct stat *st); char *xabspath(char *path); +void xmkpath(char *path, int mode); struct string_list *find_in_path(char *path, char *filename); void utoa_to_buf(unsigned n, char *buf, unsigned buflen); void itoa_to_buf(int n, char *buf, unsigned buflen); |