sus-regex/test.c

18 lines
329 B
C
Raw Normal View History

2024-04-04 07:37:18 +03:00
#include <amogus.h>
2024-04-04 09:23:46 +03:00
#include <stdio.h>
2024-04-04 20:18:10 +03:00
#include <stdlib.h>
#include <memory.h>
void callback(char* str, int size, void* data) {
char** out = (char**)data;
*out = (char*)malloc(size);
memcpy(str, *out, size);
}
2024-04-04 07:37:18 +03:00
int main() {
2024-04-04 09:23:46 +03:00
char* match;
2024-04-04 20:18:10 +03:00
if(!entry("meow.*|m(r(r(p..*)))",callback,&match))
2024-04-04 09:23:46 +03:00
return 1;
printf("%s",match);
2024-04-04 07:37:18 +03:00
}