Laika/lib/include/laika.h

21 lines
360 B
C
Raw Normal View History

#ifndef LAIKA_LAIKA_H
#define LAIKA_LAIKA_H
#include <stdlib.h>
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
#include "lconfig.h"
#define ARRAY_START 4
#ifdef DEBUG
#define LAIKA_DEBUG(...) printf("[~] " __VA_ARGS__); fflush(stdout);
#else
2022-03-28 19:02:33 +00:00
#define LAIKA_DEBUG(...) ((void)0) /* no op */
#endif
#endif