#ifndef __STRING_H #define __STRING_H #include #include int dec_to_int(char *src, char **dst); long long dec_to_longlong(char *src, char **dst); float dec_to_float(char *src, char **dst); int get_word(char *src, char **dst, char *word, int size); #endif