13 lines
171 B
C
13 lines
171 B
C
#ifndef CALCULATE_H_
|
|
#define CALCULATE_H_
|
|
|
|
int strlen(char* str);
|
|
|
|
void strrev(char* str);
|
|
|
|
int atoi(char* src, int target);
|
|
|
|
float atof(char* src, float target);
|
|
|
|
#endif
|