* Add strsep (since strtok is considered obsolete)
* add a bunch of string function doxygen comments. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3608 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
committed by
Stefan Reinauer
parent
bc9cb27a8e
commit
41514397e7
@ -109,6 +109,13 @@ int nvram_updating(void);
|
||||
void rtc_read_clock(struct tm *tm);
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @defgroup usb USB functions
|
||||
* @{
|
||||
*/
|
||||
int usb_initialize(void);
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
* @defgroup input Device functions
|
||||
* @{ @}
|
||||
@ -315,6 +322,7 @@ char *strncat(char *d, const char *s, size_t n);
|
||||
char *strchr(const char *s, int c);
|
||||
char *strdup(const char *s);
|
||||
char *strstr(const char *h, const char *n);
|
||||
char *strsep(char **stringp, const char *delim);
|
||||
/** @} */
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user