|  | 
| #define | strlen(s)   __builtin_strlen(s) | 
|  | 
| #define | strcpy(d,  s)   __builtin_strcpy(d, s) | 
|  | 
| #define | strncpy(d,  s,  n)   __builtin_strncpy(d, s, n) | 
|  | 
| #define | strcmp(s1,  s2)   __builtin_strcmp(s1, s2) | 
|  | 
| #define | strncmp(s1,  s2,  n)   __builtin_strncmp(s1, s2, n) | 
|  | 
| #define | memset(d,  c,  n)   __builtin_memset(d, c, n) | 
|  | 
| #define | memcpy(d,  s,  n)   __builtin_memcpy(d, s, n) | 
|  | 
| #define | memcmp(s1,  s2,  n)   __builtin_memcmp(s1, s2, n) | 
|  | 
| #define | LF_TO_CRLF   (1u << 7) | 
|  | 
|  | 
| size_t | strlen (const char *str) | 
|  | 
| char * | strcpy (char *dst, const char *src) | 
|  | 
| char * | strncpy (char *dst, const char *src, size_t n) | 
|  | 
| int | strcmp (const char *s1, const char *s2) | 
|  | 
| int | strncmp (const char *s1, const char *s2, size_t n) | 
|  | 
| void * | memset (void *s, int c, size_t n) | 
|  | 
| void * | memcpy (void *dst, const void *src, size_t n) | 
|  | 
| int | memcmp (const void *s1, const void *s2, size_t n) | 
|  | 
| size_t | strnlen (const char *str, size_t max) | 
|  | 
| int | vsnprintf_internal (char *buf, size_t size, const char *fmt, va_list args, unsigned int flags) | 
|  | 
| static int | vsnprintf (char *buf, size_t size, const char *fmt, va_list args) | 
|  | 
| int | snprintf (char *buf, size_t size, const char *fmt,...) | 
|  | 
| char * | fmt_number (char *str, char *end, long long val, unsigned int base, int width, int precision, unsigned int flags) | 
|  | 
| char * | fmt_string (char *str, char *end, const char *val, int width, int precision, unsigned int flags) | 
|  | 
| bool | arch_fmt_pointer (char **str, char *end, const char **fmt_ptr, const void *arg, int width, int precision, unsigned int flags) | 
|  |