mirror of
https://gitlab.com/80486DX2-66/gists
synced 2024-11-15 05:45:55 +05:30
17 lines
257 B
C
17 lines
257 B
C
/*
|
|
* str_replace.h
|
|
*
|
|
* Author: Intel A80486DX2-66
|
|
* License: Creative Commons Zero 1.0 Universal
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
char* str_replace(
|
|
const char* str,
|
|
const char* substr,
|
|
const char* replacement,
|
|
ssize_t max_count
|
|
);
|