* 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:
Stefan Reinauer
2008-09-26 18:42:40 +00:00
committed by Stefan Reinauer
parent bc9cb27a8e
commit 41514397e7
2 changed files with 85 additions and 0 deletions

View File

@ -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);
/** @} */
/**