1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-09-19 05:45:36 +05:30

str_replace.h: make sure the header is included only once

This commit is contained in:
Intel A80486DX2-66 2024-06-28 13:56:12 +03:00
parent f62488731f
commit c3d1f9350a
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B

View File

@ -5,6 +5,9 @@
* License: Unlicense
*/
#ifndef _STR_REPLACE_H
#define _STR_REPLACE_H
#include <stdlib.h>
#include <string.h>
@ -16,3 +19,5 @@ char* str_replace(
const char* replacement,
ssize_t max_count
);
#endif /* _STR_REPLACE_H */