add new c rewrite

This commit is contained in:
William Bell
2025-12-27 16:45:23 +00:00
parent 8496e6871b
commit 4711a76d5c

11
src/main.c Normal file
View File

@@ -0,0 +1,11 @@
#include <stdio.h>
int main() {
FILE *ffmpeg = popen("ffmpeg -i ", "rw");
if (!ffmpeg) return -1;
printf("hello world\n");
pclose(ffmpeg);
return 0;
}