1
0
forked from 131/lab3_test
Files
lab3_test/str_lib.h

8 lines
121 B
C
Raw Normal View History

2025-11-01 12:45:21 +03:00
#ifndef STR_LIB_H
#define STR_LIB_H
2023-03-25 03:58:02 +03:00
int mystrlen(const char *s);
int mystr_idx(const char *s1, const char *s2);
2025-11-01 12:45:21 +03:00
#endif