Archived
1
0
Fork 0
This repository has been archived on 2023-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
SLOTH/src/string.h
2018-09-26 15:43:08 -04:00

6 lines
91 B
C

#ifndef STRING_H
#define STRING_H
char* substring(char* str, int start, int end);
#endif