utils.h 383 B

1234567891011121314151617
  1. #ifndef UTILS_H
  2. #define UTILS_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. char* find_common_prefix(const char* s1, const char* s2);
  7. char* find_common_suffix(const char* s1, const char* s2);
  8. char* extract_intermediate_diff(const char* curr, const char* old);
  9. int* find_all_indices(const char* string, const char* substring, int* count);
  10. #ifdef __cplusplus
  11. }
  12. #endif
  13. #endif // UTILS_H