mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
8 lines
119 B
C
8 lines
119 B
C
#include <stdio.h>
|
|
|
|
void
|
|
example_main (const char * data)
|
|
{
|
|
printf ("example_main called with data='%s'\n", data);
|
|
}
|