mystring.c 添加字符串转浮点函数

This commit is contained in:
ranchuan
2023-10-17 18:03:00 +08:00
parent cbbb2af298
commit dc92f48f75
8 changed files with 61 additions and 13 deletions

View File

@@ -14,6 +14,7 @@ const char *str_find_char_right_p(const char *s,const char *const p, char c);
const char *str_find_char_left(const char *const p,const char *s, char c);
int str_ahextoi(const char *s);
int str_atoi(const char *s);
float str_atof(const char *s);
int str_len(const char *s);
int str_cpystr(char *s1, const char *s2, char c);
list_def *str_split(const char *s,char c);/*temp_ptr*/