1 2 3 4 5 6 7 8 9 10 11 12
#include <stdio.h> #include <pcre2.h> int test(); int main(int argc, char** argv) { printf("hello world!\n"); pcre2_compile(0, 0, 0, 0, 0, 0); test(); return 0; }