Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/test/core/test_asan_memchr.c
4150 views
1
#include <string.h>
2
#include <stdint.h>
3
4
int main() {
5
return (int)(intptr_t)memchr("hello", 'z', 7);
6
}
7
8