diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index 05f61f25b..0001cac6f 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -131,7 +131,7 @@ extern int find_real_root_device_name(char* name); | |||
131 | extern char *get_line_from_file(FILE *file); | 131 | extern char *get_line_from_file(FILE *file); |
132 | extern void print_file(FILE *file); | 132 | extern void print_file(FILE *file); |
133 | extern int print_file_by_name(char *filename); | 133 | extern int print_file_by_name(char *filename); |
134 | extern char process_escape_sequence(char **ptr); | 134 | extern char process_escape_sequence(const char **ptr); |
135 | extern char *get_last_path_component(char *path); | 135 | extern char *get_last_path_component(char *path); |
136 | extern FILE *wfopen(const char *path, const char *mode); | 136 | extern FILE *wfopen(const char *path, const char *mode); |
137 | extern FILE *xfopen(const char *path, const char *mode); | 137 | extern FILE *xfopen(const char *path, const char *mode); |
@@ -150,7 +150,7 @@ extern char *xstrndup (const char *s, int n); | |||
150 | extern char * safe_strncpy(char *dst, const char *src, size_t size); | 150 | extern char * safe_strncpy(char *dst, const char *src, size_t size); |
151 | 151 | ||
152 | struct suffix_mult { | 152 | struct suffix_mult { |
153 | char *suffix; | 153 | const char *suffix; |
154 | int mult; | 154 | int mult; |
155 | }; | 155 | }; |
156 | 156 | ||
@@ -213,4 +213,7 @@ enum { | |||
213 | int ask_confirmation(void); | 213 | int ask_confirmation(void); |
214 | int klogctl(int type, char * b, int len); | 214 | int klogctl(int type, char * b, int len); |
215 | 215 | ||
216 | char *xgetcwd(char *cwd); | ||
217 | char *concat_path_file(const char *path, const char *filename); | ||
218 | |||
216 | #endif /* __LIBBB_H__ */ | 219 | #endif /* __LIBBB_H__ */ |