blob: a000e6cb624eb7e7908588d80d70cee2d221ea56 [file] [log] [blame]
Eric Biederman8ca8d762003-04-22 19:02:15 +00001#ifndef STRING_H
2#define STRING_H
3
4#include <stddef.h>
Greg Watson16247822004-03-13 03:34:52 +00005#include <stdlib.h>
6
Aaron Durbinac4b00e2013-04-26 11:58:35 -05007/* Stringify a token */
8#ifndef STRINGIFY
9#define _STRINGIFY(x) #x
10#define STRINGIFY(x) _STRINGIFY(x)
11#endif
12
Stefan Reinauera91e0fe2008-08-01 11:39:35 +000013void *memcpy(void *dest, const void *src, size_t n);
14void *memmove(void *dest, const void *src, size_t n);
15void *memset(void *s, int c, size_t n);
16int memcmp(const void *s1, const void *s2, size_t n);
Gabe Black1025f3a2011-09-16 02:18:56 -070017void *memchr(const void *s, int c, size_t n);
Aaron Durbin5577a472016-11-08 09:42:13 -060018#if !defined(__ROMCC__)
Lee Leahy6d71a432017-03-07 15:24:16 -080019int snprintf(char *buf, size_t size, const char *fmt, ...);
Stefan Reinauer6bd571e2009-09-25 21:59:57 +000020#endif
Eric Biederman8ca8d762003-04-22 19:02:15 +000021
Stefan Reinauer14e22772010-04-27 06:56:47 +000022// simple string functions
Eric Biederman8ca8d762003-04-22 19:02:15 +000023
Stefan Reinauer14e22772010-04-27 06:56:47 +000024static inline size_t strnlen(const char *src, size_t max)
25{
Eric Biederman8ca8d762003-04-22 19:02:15 +000026 size_t i = 0;
Lee Leahybfdb8932017-03-07 15:17:04 -080027 while ((*src++) && (i < max))
Eric Biederman8ca8d762003-04-22 19:02:15 +000028 i++;
Eric Biederman8ca8d762003-04-22 19:02:15 +000029 return i;
30}
31
32static inline size_t strlen(const char *src)
33{
34 size_t i = 0;
Lee Leahybfdb8932017-03-07 15:17:04 -080035 while (*src++)
Eric Biederman8ca8d762003-04-22 19:02:15 +000036 i++;
Eric Biederman8ca8d762003-04-22 19:02:15 +000037 return i;
38}
39
Greg Watson16247822004-03-13 03:34:52 +000040static inline char *strchr(const char *s, int c)
41{
42 for (; *s; s++) {
43 if (*s == c)
44 return (char *) s;
Stefan Reinauer14e22772010-04-27 06:56:47 +000045 }
Greg Watson16247822004-03-13 03:34:52 +000046 return 0;
47}
Eric Biederman8ca8d762003-04-22 19:02:15 +000048
Stefan Reinauer35b6bbb2010-03-28 21:26:54 +000049#if !defined(__PRE_RAM__)
Greg Watson16247822004-03-13 03:34:52 +000050static inline char *strdup(const char *s)
Stefan Reinauer14e22772010-04-27 06:56:47 +000051{
Greg Watson16247822004-03-13 03:34:52 +000052 size_t sz = strlen(s) + 1;
53 char *d = malloc(sz);
54 memcpy(d, s, sz);
55 return d;
56}
Kyösti Mälkkic36af7b2014-11-18 12:41:16 +020057
58static inline char *strconcat(const char *s1, const char *s2)
59{
60 size_t sz_1 = strlen(s1);
61 size_t sz_2 = strlen(s2);
62 char *d = malloc(sz_1 + sz_2 + 1);
63 memcpy(d, s1, sz_1);
64 memcpy(d + sz_1, s2, sz_2 + 1);
65 return d;
66}
Stefan Reinauer951f5882009-07-19 00:18:15 +000067#endif
Greg Watson16247822004-03-13 03:34:52 +000068
69static inline char *strncpy(char *to, const char *from, int count)
70{
71 register char *ret = to;
72
73 while (count > 0) {
74 count--;
75 if ((*to++ = *from++) == '\0')
76 break;
77 }
78
79 while (count > 0) {
80 count--;
81 *to++ = '\0';
82 }
83 return ret;
84}
85
Stefan Reinauer2c3f2602012-12-19 11:22:07 -080086static inline char *strcpy(char *dst, const char *src)
Uwe Hermannaac8f662010-09-29 09:54:16 +000087{
Stefan Reinauer2c3f2602012-12-19 11:22:07 -080088 char *ptr = dst;
89
Uwe Hermannaac8f662010-09-29 09:54:16 +000090 while (*src)
91 *dst++ = *src++;
Stefan Reinauer2c3f2602012-12-19 11:22:07 -080092 *dst = '\0';
93
94 return ptr;
Uwe Hermannaac8f662010-09-29 09:54:16 +000095}
96
Greg Watson16247822004-03-13 03:34:52 +000097static inline int strcmp(const char *s1, const char *s2)
Stefan Reinauer14e22772010-04-27 06:56:47 +000098{
Greg Watson16247822004-03-13 03:34:52 +000099 int r;
100
101 while ((r = (*s1 - *s2)) == 0 && *s1) {
102 s1++;
103 s2++;
104 }
105 return r;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000106}
Greg Watson16247822004-03-13 03:34:52 +0000107
Stefan Reinauer36c83402009-03-01 10:16:01 +0000108static inline int strncmp(const char *s1, const char *s2, int maxlen)
109{
110 int i;
111
112 for (i = 0; i < maxlen; i++) {
Hannah Williams03d4ae72015-12-01 09:30:27 -0800113 if ((s1[i] != s2[i]) || (s1[i] == '\0'))
Stefan Reinauer36c83402009-03-01 10:16:01 +0000114 return s1[i] - s2[i];
115 }
116
117 return 0;
118}
119
Greg Watson16247822004-03-13 03:34:52 +0000120static inline int isspace(int c)
121{
122 switch (c) {
123 case ' ': case '\f': case '\n':
124 case '\r': case '\t': case '\v':
125 return 1;
126 default:
127 return 0;
128 }
129}
130
131static inline int isdigit(int c)
132{
133 return (c >= '0' && c <= '9');
134}
135
136static inline int isxdigit(int c)
137{
138 return ((c >= '0' && c <= '9') ||
139 (c >= 'a' && c <= 'f') ||
140 (c >= 'A' && c <= 'F'));
141}
142
Greg Watsonf6d05f52004-03-17 17:02:28 +0000143static inline int isupper(int c)
144{
145 return (c >= 'A' && c <= 'Z');
146}
147
Greg Watson16247822004-03-13 03:34:52 +0000148static inline int islower(int c)
149{
150 return (c >= 'a' && c <= 'z');
151}
152
153static inline int toupper(int c)
154{
Elyes HAOUAS8ffd0502016-09-01 19:01:41 +0200155 if (islower(c))
156 c -= 'a'-'A';
157 return c;
Greg Watson16247822004-03-13 03:34:52 +0000158}
Greg Watsonf6d05f52004-03-17 17:02:28 +0000159
160static inline int tolower(int c)
161{
Elyes HAOUAS8ffd0502016-09-01 19:01:41 +0200162 if (isupper(c))
163 c -= 'A'-'a';
164 return c;
Greg Watsonf6d05f52004-03-17 17:02:28 +0000165}
Eric Biederman8ca8d762003-04-22 19:02:15 +0000166#endif /* STRING_H */