summaryrefslogblamecommitdiffstats
path: root/test.c
blob: d24517da8de8462d8bdd255d5fe848a22e1fb5d6 (plain) (tree)





















                                                              
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main (int argc, char ** argv) {
	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;
}