30 lines
153 B
C
30 lines
153 B
C
|
|
#ifndef mystring_h__
|
|
#define mystring_h__
|
|
|
|
|
|
#include "stdint.h"
|
|
|
|
|
|
|
|
int str_ahextoi(const char *s);
|
|
|
|
int str_atoi(const char *s);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|