Files
checker_host/elec/mystring.h
2023-11-27 14:31:00 +08:00

31 lines
200 B
C

#ifndef mystring_h__
#define mystring_h__
#include "stdint.h"
int str_ahextoi(const char *s);
int str_atoi(const char *s);
int str_is_print_str(const char *str,int len);
#endif