diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-07-05 17:26:35 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-07-05 17:26:35 +0000 |
commit | d51df1bb1b5513658a5517d49ed8ded55c819f62 (patch) | |
tree | a2fa5e67df2ccd2881a21ed4d22c6f7453b793b2 /internal.h | |
parent | 2323f4066d8cab67c2edc21361d27e1983e55b7a (diff) | |
download | busybox-w32-d51df1bb1b5513658a5517d49ed8ded55c819f62.tar.gz busybox-w32-d51df1bb1b5513658a5517d49ed8ded55c819f62.tar.bz2 busybox-w32-d51df1bb1b5513658a5517d49ed8ded55c819f62.zip |
* Fix to tr so it recognizes standard escape sequences. Merged common
escape seq. code from tr and echo into utility.c. Fix thanks to
Matt Kraai <kraai@alumni.carnegiemellon.edu>.
* This should close Bug #1015. Please test.
-Erik
git-svn-id: svn://busybox.net/trunk/busybox@737 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'internal.h')
-rw-r--r-- | internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal.h b/internal.h index 41a72e18a..27be05ee2 100644 --- a/internal.h +++ b/internal.h | |||
@@ -259,6 +259,7 @@ extern pid_t* findPidByName( char* pidName); | |||
259 | extern void *xmalloc (size_t size); | 259 | extern void *xmalloc (size_t size); |
260 | extern int find_real_root_device_name(char* name); | 260 | extern int find_real_root_device_name(char* name); |
261 | extern char *get_line_from_file(FILE *file); | 261 | extern char *get_line_from_file(FILE *file); |
262 | extern char process_escape_sequence(char **ptr); | ||
262 | 263 | ||
263 | /* These parse entries in /etc/passwd and /etc/group. This is desirable | 264 | /* These parse entries in /etc/passwd and /etc/group. This is desirable |
264 | * for BusyBox since we want to avoid using the glibc NSS stuff, which | 265 | * for BusyBox since we want to avoid using the glibc NSS stuff, which |