libflint/include/lfstring.h
Evan Burkey 34b21c494b
All checks were successful
Test and Deploy / test (push) Successful in 15s
Test and Deploy / docs (push) Successful in 17s
cleanup const qualifiers. Add index argument to vec_push
2024-07-31 14:40:16 -07:00

11 lines
267 B
C

#ifndef LIBFLINT_H_STRING
#define LIBFLINT_H_STRING
#include <stddef.h>
int find_substrings(const char* haystack, const char* needle, size_t *num_substrings, size_t **substrings);
char* substr(const char* str, size_t idx, size_t len);
#endif // LIBFLINT_H_STRING