2022-01-24 03:28:16 +00:00
|
|
|
#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>
|
|
|
|
|
2022-01-31 21:54:39 +00:00
|
|
|
#include "lconfig.h"
|
|
|
|
|
2022-01-24 03:28:16 +00:00
|
|
|
#define ARRAY_START 4
|
|
|
|
|
2022-01-25 17:58:36 +00:00
|
|
|
#ifdef DEBUG
|
2022-01-31 19:27:12 +00:00
|
|
|
#define LAIKA_DEBUG(...) printf("[~] " __VA_ARGS__); fflush(stdout);
|
2022-01-25 17:58:36 +00:00
|
|
|
#else
|
2022-03-28 19:02:33 +00:00
|
|
|
#define LAIKA_DEBUG(...) ((void)0) /* no op */
|
2022-01-25 17:58:36 +00:00
|
|
|
#endif
|
|
|
|
|
2022-01-24 03:28:16 +00:00
|
|
|
#endif
|