add new c rewrite
This commit is contained in:
11
src/main.c
Normal file
11
src/main.c
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user