Codebase list ohcount / 6ef9399e-69b6-464b-98a8-52915e284046/main src / log.c
6ef9399e-69b6-464b-98a8-52915e284046/main

Tree @6ef9399e-69b6-464b-98a8-52915e284046/main (Download .tar.gz)

log.c @6ef9399e-69b6-464b-98a8-52915e284046/main

3581673
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include <stdlib.h>

#define LOG_FILE "/tmp/ohcount.log"
void log_it(char *log) {
	FILE *f = fopen(LOG_FILE, "a");
	fputs(log, f);
	fclose(f);
}