1
0
forked from 131/lab3_test
Files
lab3_test/str_lib.h
2025-11-01 12:45:21 +03:00

8 lines
121 B
C

#ifndef STR_LIB_H
#define STR_LIB_H
int mystrlen(const char *s);
int mystr_idx(const char *s1, const char *s2);
#endif