prototypes pog

This commit is contained in:
LinlyBoi
2023-08-19 21:39:24 +03:00
parent 37f4c17ebb
commit 98d40c12eb

3
main.h
View File

@@ -1,6 +1,9 @@
#ifndef MAIN_H_ #ifndef MAIN_H_
#define MAIN_H_ #define MAIN_H_
int _printf(const char *format, ...); int _printf(const char *format, ...);
int _contains(char *str);
int _strlen(char *str);
char *_strrev(char *str);
#endif #endif