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:
parent
58b8054cca
commit
7a6f27ce1e
2 changed files with 27 additions and 0 deletions
|
|
@ -29,6 +29,8 @@ int strcmp(const char *s1, const char *s2);
|
|||
int strncmp(const char *s1, const char *s2, int maxlen);
|
||||
int strspn(const char *str, const char *spn);
|
||||
int strcspn(const char *str, const char *spn);
|
||||
char *strtok_r(char *str, const char *delim, char **ptr);
|
||||
char *strtok(char *str, const char *delim);
|
||||
long atol(const char *str);
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue