Subversion Repositories HelenOS

Rev

Rev 3492 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
999 palkovsky 1
/*
2071 jermar 2
 * Copyright (c) 2005 Martin Decky
3745 rimsky 3
 * Copyright (c) 2008 Jiri Svoboda
999 palkovsky 4
 * All rights reserved.
5
 *
6
 * Redistribution and use in source and binary forms, with or without
7
 * modification, are permitted provided that the following conditions
8
 * are met:
9
 *
10
 * - Redistributions of source code must retain the above copyright
11
 *   notice, this list of conditions and the following disclaimer.
12
 * - Redistributions in binary form must reproduce the above copyright
13
 *   notice, this list of conditions and the following disclaimer in the
14
 *   documentation and/or other materials provided with the distribution.
15
 * - The name of the author may not be used to endorse or promote products
16
 *   derived from this software without specific prior written permission.
17
 *
18
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
 */
29
 
1719 decky 30
/** @addtogroup libc
1653 cejka 31
 * @{
32
 */
33
/** @file
34
 */
35
 
999 palkovsky 36
#include <string.h>
3745 rimsky 37
#include <stdlib.h>
38
#include <limits.h>
1314 cejka 39
#include <ctype.h>
3238 jermar 40
#include <malloc.h>
999 palkovsky 41
 
1314 cejka 42
/** Count the number of characters in the string, not including terminating 0.
3261 jermar 43
 *
44
 * @param str       String.
45
 * @return      Number of characters in string.
1314 cejka 46
 */
1173 cejka 47
size_t strlen(const char *str)
48
{
1197 cejka 49
    size_t counter = 0;
1173 cejka 50
 
1719 decky 51
    while (str[counter] != 0)
1173 cejka 52
        counter++;
53
 
54
    return counter;
55
}
1314 cejka 56
 
1719 decky 57
int strcmp(const char *a, const char *b)
1319 vana 58
{
1719 decky 59
    int c = 0;
1319 vana 60
 
1719 decky 61
    while (a[c] && b[c] && (!(a[c] - b[c])))
62
        c++;
1319 vana 63
 
1719 decky 64
    return (a[c] - b[c]);
1319 vana 65
}
66
 
2640 cejka 67
int strncmp(const char *a, const char *b, size_t n)
68
{
69
    size_t c = 0;
1319 vana 70
 
2640 cejka 71
    while (c < n && a[c] && b[c] && (!(a[c] - b[c])))
72
        c++;
73
 
74
    return ( c < n ? a[c] - b[c] : 0);
75
 
76
}
77
 
3271 jermar 78
int stricmp(const char *a, const char *b)
79
{
80
    int c = 0;
81
 
82
    while (a[c] && b[c] && (!(tolower(a[c]) - tolower(b[c]))))
83
        c++;
84
 
85
    return (tolower(a[c]) - tolower(b[c]));
86
}
87
 
3261 jermar 88
/** Return pointer to the first occurence of character c in string.
89
 *
90
 * @param str       Scanned string.
91
 * @param c     Searched character (taken as one byte).
92
 * @return      Pointer to the matched character or NULL if it is not
93
 *          found in given string.
1314 cejka 94
 */
95
char *strchr(const char *str, int c)
96
{
97
    while (*str != '\0') {
1719 decky 98
        if (*str == (char) c)
99
            return (char *) str;
1314 cejka 100
        str++;
101
    }
102
 
103
    return NULL;
104
}
105
 
3261 jermar 106
/** Return pointer to the last occurence of character c in string.
107
 *
108
 * @param str       Scanned string.
109
 * @param c     Searched character (taken as one byte).
110
 * @return      Pointer to the matched character or NULL if it is not
111
 *          found in given string.
1314 cejka 112
 */
113
char *strrchr(const char *str, int c)
114
{
115
    char *retval = NULL;
116
 
117
    while (*str != '\0') {
1719 decky 118
        if (*str == (char) c)
119
            retval = (char *) str;
1314 cejka 120
        str++;
121
    }
122
 
1719 decky 123
    return (char *) retval;
1314 cejka 124
}
125
 
126
/** Convert string to a number.
127
 * Core of strtol and strtoul functions.
3261 jermar 128
 *
129
 * @param nptr      Pointer to string.
130
 * @param endptr    If not NULL, function stores here pointer to the first
131
 *          invalid character.
132
 * @param base      Zero or number between 2 and 36 inclusive.
133
 * @param sgn       It's set to 1 if minus found.
134
 * @return      Result of conversion.
1314 cejka 135
 */
3261 jermar 136
static unsigned long
137
_strtoul(const char *nptr, char **endptr, int base, char *sgn)
1314 cejka 138
{
139
    unsigned char c;
140
    unsigned long result = 0;
141
    unsigned long a, b;
142
    const char *str = nptr;
143
    const char *tmpptr;
144
 
145
    while (isspace(*str))
146
        str++;
147
 
148
    if (*str == '-') {
149
        *sgn = 1;
150
        ++str;
151
    } else if (*str == '+')
152
        ++str;
153
 
154
    if (base) {
155
        if ((base == 1) || (base > 36)) {
156
            /* FIXME: set errno to EINVAL */
157
            return 0;
158
        }
3261 jermar 159
        if ((base == 16) && (*str == '0') && ((str[1] == 'x') ||
160
            (str[1] == 'X'))) {
1314 cejka 161
            str += 2;
162
        }
163
    } else {
164
        base = 10;
165
 
166
        if (*str == '0') {
167
            base = 8;
168
            if ((str[1] == 'X') || (str[1] == 'x'))  {
169
                base = 16;
170
                str += 2;
171
            }
172
        }
173
    }
174
 
175
    tmpptr = str;
176
 
177
    while (*str) {
178
        c = *str;
3261 jermar 179
        c = (c >= 'a' ? c - 'a' + 10 : (c >= 'A' ? c - 'A' + 10 :
180
            (c <= '9' ? c - '0' : 0xff)));
1314 cejka 181
        if (c > base) {
182
            break;
183
        }
184
 
185
        a = (result & 0xff) * base + c;
186
        b = (result >> 8) * base + (a >> 8);
187
 
188
        if (b > (ULONG_MAX >> 8)) {
189
            /* overflow */
190
            /* FIXME: errno = ERANGE*/
191
            return ULONG_MAX;
192
        }
193
 
194
        result = (b << 8) + (a & 0xff);
195
        ++str;
196
    }
197
 
198
    if (str == tmpptr) {
3261 jermar 199
        /*
200
         * No number was found => first invalid character is the first
201
         * character of the string.
202
         */
1314 cejka 203
        /* FIXME: set errno to EINVAL */
204
        str = nptr;
205
        result = 0;
206
    }
207
 
208
    if (endptr)
1719 decky 209
        *endptr = (char *) str;
1314 cejka 210
 
211
    if (nptr == str) {
212
        /*FIXME: errno = EINVAL*/
213
        return 0;
214
    }
215
 
216
    return result;
217
}
218
 
219
/** Convert initial part of string to long int according to given base.
3261 jermar 220
 * The number may begin with an arbitrary number of whitespaces followed by
221
 * optional sign (`+' or `-'). If the base is 0 or 16, the prefix `0x' may be
222
 * inserted and the number will be taken as hexadecimal one. If the base is 0
223
 * and the number begin with a zero, number will be taken as octal one (as with
224
 * base 8). Otherwise the base 0 is taken as decimal.
225
 *
226
 * @param nptr      Pointer to string.
227
 * @param endptr    If not NULL, function stores here pointer to the first
228
 *          invalid character.
229
 * @param base      Zero or number between 2 and 36 inclusive.
230
 * @return      Result of conversion.
1314 cejka 231
 */
232
long int strtol(const char *nptr, char **endptr, int base)
233
{
234
    char sgn = 0;
235
    unsigned long number = 0;
236
 
237
    number = _strtoul(nptr, endptr, base, &sgn);
238
 
239
    if (number > LONG_MAX) {
1719 decky 240
        if ((sgn) && (number == (unsigned long) (LONG_MAX) + 1)) {
1314 cejka 241
            /* FIXME: set 0 to errno */
242
            return number;     
243
        }
244
        /* FIXME: set ERANGE to errno */
1719 decky 245
        return (sgn ? LONG_MIN : LONG_MAX);
1314 cejka 246
    }
247
 
1719 decky 248
    return (sgn ? -number : number);
1314 cejka 249
}
250
 
251
 
252
/** Convert initial part of string to unsigned long according to given base.
3261 jermar 253
 * The number may begin with an arbitrary number of whitespaces followed by
254
 * optional sign (`+' or `-'). If the base is 0 or 16, the prefix `0x' may be
255
 * inserted and the number will be taken as hexadecimal one. If the base is 0
256
 * and the number begin with a zero, number will be taken as octal one (as with
257
 * base 8). Otherwise the base 0 is taken as decimal.
258
 *
259
 * @param nptr      Pointer to string.
260
 * @param endptr    If not NULL, function stores here pointer to the first
261
 *          invalid character
262
 * @param base      Zero or number between 2 and 36 inclusive.
263
 * @return      Result of conversion.
1314 cejka 264
 */
265
unsigned long strtoul(const char *nptr, char **endptr, int base)
266
{
267
    char sgn = 0;
268
    unsigned long number = 0;
269
 
270
    number = _strtoul(nptr, endptr, base, &sgn);
271
 
1719 decky 272
    return (sgn ? -number : number);
1314 cejka 273
}
1472 palkovsky 274
 
275
char *strcpy(char *dest, const char *src)
276
{
1719 decky 277
    char *orig = dest;
278
 
2754 jermar 279
    while ((*(dest++) = *(src++)))
280
        ;
1719 decky 281
    return orig;
1472 palkovsky 282
}
283
 
284
char *strncpy(char *dest, const char *src, size_t n)
285
{
1719 decky 286
    char *orig = dest;
287
 
2754 jermar 288
    while ((*(dest++) = *(src++)) && --n)
289
        ;
1719 decky 290
    return orig;
1472 palkovsky 291
}
1653 cejka 292
 
2754 jermar 293
char *strcat(char *dest, const char *src)
294
{
295
    char *orig = dest;
296
    while (*dest++)
297
        ;
298
    --dest;
299
    while ((*dest++ = *src++))
300
        ;
301
    return orig;
302
}
303
 
3238 jermar 304
char * strdup(const char *s1)
305
{
306
    size_t len = strlen(s1) + 1;
307
    void *ret = malloc(len);
308
 
309
    if (ret == NULL)
310
        return (char *) NULL;
311
 
312
    return (char *) memcpy(ret, s1, len);
313
}
314
 
3745 rimsky 315
char *strtok(char *s, const char *delim)
3492 rimsky 316
{
3745 rimsky 317
    static char *next;
3492 rimsky 318
 
3745 rimsky 319
    return strtok_r(s, delim, &next);
320
}
3492 rimsky 321
 
3745 rimsky 322
char *strtok_r(char *s, const char *delim, char **next)
323
{
324
    char *start, *end;
3492 rimsky 325
 
3745 rimsky 326
    if (s == NULL)
327
        s = *next;
3492 rimsky 328
 
3745 rimsky 329
    /* Skip over leading delimiters. */
330
    while (*s && (strchr(delim, *s) != NULL)) ++s;
331
    start = s;
3492 rimsky 332
 
3745 rimsky 333
    /* Skip over token characters. */
334
    while (*s && (strchr(delim, *s) == NULL)) ++s;
335
    end = s;
336
    *next = (*s ? s + 1 : s);
337
 
338
    if (start == end) {
339
        return NULL;    /* No more tokens. */
3492 rimsky 340
    }
341
 
3745 rimsky 342
    /* Overwrite delimiter with NULL terminator. */
343
    *end = '\0';
344
    return start;
3492 rimsky 345
}
346
 
1719 decky 347
/** @}
1653 cejka 348
 */