libflint/include/lfstring.h

11 lines
273 B
C
Raw Normal View History

#ifndef LIBFLINT_H_STRING
#define LIBFLINT_H_STRING
#include <stddef.h>
2023-12-04 01:42:18 +00:00
int find_substrings(const char* haystack, const char* needle, size_t *num_substrings, size_t **substrings);
const char* substr(const char* str, size_t idx, size_t len);
#endif // LIBFLINT_H_STRING