getting started

This commit is contained in:
2024-06-25 22:49:14 +09:00
parent 281149feba
commit 03e70af0b4
6 changed files with 110 additions and 0 deletions

12
include/calculate.h Normal file
View File

@@ -0,0 +1,12 @@
#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