getting started
This commit is contained in:
12
include/calculate.h
Normal file
12
include/calculate.h
Normal 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
|
||||
8
include/main.h
Normal file
8
include/main.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#ifndef MAIN_H_
|
||||
#define MAIN_H_
|
||||
|
||||
#include <ncurses.h>
|
||||
|
||||
int main(int argc, char** argv);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user