Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/system/include/compat/string.h
6174 views
1
#ifndef _COMPAT_STRING_H
2
#define _COMPAT_STRING_H
3
4
#ifdef __cplusplus
5
extern "C" {
6
#endif
7
8
extern char* strlwr(char *);
9
extern char* strupr(char *);
10
11
#ifdef __cplusplus
12
}
13
#endif
14
15
#include_next <string.h>
16
17
#endif
18
19