From efc22df4d449886597eaf1a642cf095b6392855e Mon Sep 17 00:00:00 2001 From: sijanec Date: Mon, 11 Jan 2021 23:42:09 +0100 Subject: 0.1.1-4 odstranim useless math.h in test.c --- rtv4d-dl.c | 1 - test.c | 27 --------------------------- 2 files changed, 28 deletions(-) delete mode 100644 test.c diff --git a/rtv4d-dl.c b/rtv4d-dl.c index 62c3d2b..460f3d5 100644 --- a/rtv4d-dl.c +++ b/rtv4d-dl.c @@ -2,7 +2,6 @@ #include #include #include -#include #include #include #include diff --git a/test.c b/test.c deleted file mode 100644 index 191d22a..0000000 --- a/test.c +++ /dev/null @@ -1,27 +0,0 @@ -#include -#include -#include -int main (int argc, char ** argv) { - char aaa[] = "chunk_1234.ts"; - char bbb[] = "chunk_%u.ts"; - unsigned int ccc; - sscanf(aaa, bbb, &ccc); - fprintf(stdout, "%u\n", ccc); - // char * metavalues[] = { "abc", "def", "ghi", "jkl" }; - // fprintf(stdout, "%s\n", { "a", "b", "c", "d" }[3]); - // const char b[5] = "aaaaa"; - // const char a[5] = "aaaaa"; - // fprintf(stdout, "%d\n", strncasecmp(a, b, 325432)); - // if (1 == 0 && fprintf(stderr, "test\n")); - // FILE * fd = fopen("/tmp/b.mp4", "r"); - // unsigned long long int s = 0; - // unsigned long long int b = 0; - // int c = fgetc(fd); - // while (!feof(fd)) { - // s = s + c; - // b++; - // c = fgetc(fd); - // } - // fprintf(stdout, "\n%llu, %llu\n", b, s); - return 0; -} -- cgit v1.2.3