Results seem sensible
This commit is contained in:
5
queue.h
5
queue.h
@@ -7,6 +7,11 @@
|
||||
#define QUEUE_SIZE 5000
|
||||
|
||||
#define ERROR(condition, msg, ...) if(condition){fprintf(stderr, msg, ##__VA_ARGS__); exit(1);}
|
||||
#ifdef _DEBUG
|
||||
#define LOG(msg, ...) fprintf(stderr, msg, ##__VA_ARGS__)
|
||||
#else
|
||||
#define LOG(msg, ...)
|
||||
#endif
|
||||
|
||||
typedef struct {
|
||||
unsigned int start;
|
||||
|
||||
Reference in New Issue
Block a user