You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
221 B
C

#ifndef SLOG_H
#define SLOG_H
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <time.h>
#include <sys/types.h>
#include <unistd.h>
void slog(const char *logfile, int level, const char *body);
#endif