19 lines
463 B
C
Executable File
19 lines
463 B
C
Executable File
#ifndef _STDMISC_H_
|
|
#define _STDMISC_H_ 1
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int xatoi (char **str, /* Pointer to pointer to the string */
|
|
long *res); /* Pointer to the valiable to store the value */
|
|
|
|
extern int uxatoi(char **str, /* Pointer to pointer to the string */
|
|
uint32_t *res); /* Pointer to the valiable to store the value */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _STDMISC_H_ */
|