This commit is contained in:
2025-07-21 18:14:17 +08:00
parent cb718130f7
commit b9a758a025
3 changed files with 93 additions and 0 deletions

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

@@ -0,0 +1,11 @@
#ifndef INC_1233_H
#define INC_1233_H
#ifdef __cplusplus
extern "C"
{
#endif
char **removeSubfolders(char **folder, int folderSize, int *returnSize);
#ifdef __cplusplus
}
#endif
#endif