1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2025-01-10 17:32:05 +05:30
gists/c-programming/strings/str_replace.h

19 lines
258 B
C
Raw Normal View History

2024-02-20 19:41:24 +03:00
/*
* str_replace.h
*
* Author: Intel A80486DX2-66
2024-04-25 23:16:39 +03:00
* License: Unlicense
2024-02-20 19:41:24 +03:00
*/
#include <stdlib.h>
#include <string.h>
#define STR_REPLACE_ALL 0
2024-02-20 19:41:24 +03:00
char* str_replace(
const char* str,
const char* substr,
const char* replacement,
ssize_t max_count
);