This commit is contained in:
2025-07-20 11:06:49 +08:00
parent f54c320ebf
commit cb718130f7
3 changed files with 72 additions and 0 deletions

11
include/solution/345.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef INC_345_H
#define INC_345_H
#ifdef __cplusplus
extern "C"
{
#endif
char *reverseVowels(char *s);
#ifdef __cplusplus
}
#endif
#endif