#pragma once #include size_t strops_copy(char *dst, const char *src, size_t size); char* strops_stristr(char* a, char* b); void strops_replace(char *buf, size_t buf_size, const char *search, const char *replace); void strops_replace_int32(char *buf, size_t buf_size, const char *search, int32_t number); void strops_replace_int64(char *buf, size_t buf_size, const char *search, int64_t number); void strops_replace_float(char *buf, size_t buf_size, const char *search, float number, int decimals);