SBDP01/common.h
2018-10-21 13:04:41 +02:00

23 lines
433 B
C

#ifndef COMMON_H_
#define COMMON_H_
#define VERBOSITY_QUIET -1
#define VERBOSITY_NORMAL 0
#define VERBOSITY_VERBOSE 1
#define VERBOSITY_DEBUG 2
#include <stdio.h>
#define OPTPARSE_IMPLEMENTATION
#define OPTPARSE_API static
#include "optparse.h"
typedef char verbosity_t;
typedef struct optparse optparse_t;
extern verbosity_t verbosity;
void printfv(verbosity_t verbosity, const char* format, ...);
void iostats();
#endif