Skip to content

Instantly share code, notes, and snippets.

View Tinet-AaronAn's full-sized avatar
🎯
Focusing

安静波 Tinet-AaronAn

🎯
Focusing
View GitHub Profile
@tanbro
tanbro / re_replace.h
Last active May 16, 2024 01:25
str replace and regex replace functions in C language
#ifndef __RE_REPLACE__
#define __RE_REPLACE__
#include <string.h>
#include <regex.h>
#ifdef __cplusplus
extern "C" {
#endif