lib: Add strtok() and strtok_r()
Add strtok() and strtok_r() to the library. Signed-off-by: Harshit Sharma <harshitsharmajs@gmail.com> Change-Id: Ic855b31669be1c274cbf247c53ffa6f74ec5bf35 Reviewed-on: https://review.coreboot.org/c/coreboot/+/41420 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
This commit is contained in:
@ -163,6 +163,31 @@ int strcspn(const char *str, const char *spn)
|
||||
return ret;
|
||||
}
|
||||
|
||||
char *strtok_r(char *str, const char *delim, char **ptr)
|
||||
{
|
||||
char *start;
|
||||
char *end;
|
||||
|
||||
if (str == NULL)
|
||||
str = *ptr;
|
||||
start = str + strspn(str, delim);
|
||||
if (start[0] == '\0')
|
||||
return NULL;
|
||||
|
||||
end = start + strcspn(start, delim);
|
||||
*ptr = end;
|
||||
if (end[0] != '\0')
|
||||
*(*ptr)++ = '\0';
|
||||
return start;
|
||||
}
|
||||
|
||||
char *strtok(char *str, const char *delim)
|
||||
{
|
||||
static char *strtok_ptr;
|
||||
|
||||
return strtok_r(str, delim, &strtok_ptr);
|
||||
}
|
||||
|
||||
long atol(const char *str)
|
||||
{
|
||||
long ret = 0;
|
||||
|
Reference in New Issue
Block a user