libmx/include/mx/base.h

14 lines
200 B
C
Raw Normal View History

2023-08-20 17:08:14 +02:00
#ifndef _MX_BASE_H_
#define _MX_BASE_H_
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
#define MX_API
#define MX_IMPL
#define MX_INLINE inline static
2024-01-06 10:59:52 +01:00
typedef int32_t mx_len_t;
2023-08-20 17:08:14 +02:00
#endif