blob: 7597323c47826a76d3835e6123ea3c08f2432bce [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;
Lee Leahyb1260552017-03-07 16:01:09 -080072 register char data;
Greg Watson16247822004-03-13 03:34:52 +000073
74 while (count > 0) {
75 count--;
Lee Leahyb1260552017-03-07 16:01:09 -080076 data = *from++;
77 *to++ = data;
78 if (data == '\0')
Greg Watson16247822004-03-13 03:34:52 +000079 break;
80 }
81
82 while (count > 0) {
83 count--;
84 *to++ = '\0';
85 }
86 return ret;
87}
88
Stefan Reinauer2c3f2602012-12-19 11:22:07 -080089static inline char *strcpy(char *dst, const char *src)
Uwe Hermannaac8f662010-09-29 09:54:16 +000090{
Stefan Reinauer2c3f2602012-12-19 11:22:07 -080091 char *ptr = dst;
92
Uwe Hermannaac8f662010-09-29 09:54:16 +000093 while (*src)
94 *dst++ = *src++;
Stefan Reinauer2c3f2602012-12-19 11:22:07 -080095 *dst = '\0';
96
97 return ptr;
Uwe Hermannaac8f662010-09-29 09:54:16 +000098}
99
Greg Watson16247822004-03-13 03:34:52 +0000100static inline int strcmp(const char *s1, const char *s2)
Stefan Reinauer14e22772010-04-27 06:56:47 +0000101{
Greg Watson16247822004-03-13 03:34:52 +0000102 int r;
103
104 while ((r = (*s1 - *s2)) == 0 && *s1) {
105 s1++;
106 s2++;
107 }
108 return r;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000109}
Greg Watson16247822004-03-13 03:34:52 +0000110
Stefan Reinauer36c83402009-03-01 10:16:01 +0000111static inline int strncmp(const char *s1, const char *s2, int maxlen)
112{
113 int i;
114
115 for (i = 0; i < maxlen; i++) {
Hannah Williams03d4ae72015-12-01 09:30:27 -0800116 if ((s1[i] != s2[i]) || (s1[i] == '\0'))
Stefan Reinauer36c83402009-03-01 10:16:01 +0000117 return s1[i] - s2[i];
118 }
119
120 return 0;
121}
122
Greg Watson16247822004-03-13 03:34:52 +0000123static inline int isspace(int c)
124{
125 switch (c) {
126 case ' ': case '\f': case '\n':
127 case '\r': case '\t': case '\v':
128 return 1;
129 default:
130 return 0;
131 }
132}
133
134static inline int isdigit(int c)
135{
136 return (c >= '0' && c <= '9');
137}
138
139static inline int isxdigit(int c)
140{
141 return ((c >= '0' && c <= '9') ||
142 (c >= 'a' && c <= 'f') ||
143 (c >= 'A' && c <= 'F'));
144}
145
Greg Watsonf6d05f52004-03-17 17:02:28 +0000146static inline int isupper(int c)
147{
148 return (c >= 'A' && c <= 'Z');
149}
150
Greg Watson16247822004-03-13 03:34:52 +0000151static inline int islower(int c)
152{
153 return (c >= 'a' && c <= 'z');
154}
155
156static inline int toupper(int c)
157{
Elyes HAOUAS8ffd0502016-09-01 19:01:41 +0200158 if (islower(c))
159 c -= 'a'-'A';
160 return c;
Greg Watson16247822004-03-13 03:34:52 +0000161}
Greg Watsonf6d05f52004-03-17 17:02:28 +0000162
163static inline int tolower(int c)
164{
Elyes HAOUAS8ffd0502016-09-01 19:01:41 +0200165 if (isupper(c))
166 c -= 'A'-'a';
167 return c;
Greg Watsonf6d05f52004-03-17 17:02:28 +0000168}
Eric Biederman8ca8d762003-04-22 19:02:15 +0000169#endif /* STRING_H */