2023-12-03 17:08:04 -08:00
|
|
|
#ifndef LIBFLINT_H_STRING
|
|
|
|
#define LIBFLINT_H_STRING
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2023-12-03 17:42:18 -08:00
|
|
|
int find_substrings(const char* haystack, const char* needle, size_t *num_substrings, size_t **substrings);
|
2023-12-03 17:08:04 -08:00
|
|
|
|
2024-07-31 14:40:16 -07:00
|
|
|
char* substr(const char* str, size_t idx, size_t len);
|
2023-12-03 17:08:04 -08:00
|
|
|
|
|
|
|
#endif // LIBFLINT_H_STRING
|