mirror of
https://github.com/mappu/miqt.git
synced 2025-01-20 21:50:38 +00:00
765592cca2
* `stdlib` is not used / needed * `miqt_strdup` doesn't exist * consistently use nameprefix for `_ret`
34 lines
390 B
C
34 lines
390 B
C
#pragma once
|
|
#ifndef MIQT_LIBMIQT_LIBMIQT_H
|
|
#define MIQT_LIBMIQT_LIBMIQT_H
|
|
|
|
#include <string.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct miqt_string {
|
|
size_t len;
|
|
char* data;
|
|
};
|
|
|
|
struct miqt_array {
|
|
size_t len;
|
|
void* data;
|
|
};
|
|
|
|
struct miqt_map {
|
|
size_t len;
|
|
void* keys;
|
|
void* values;
|
|
};
|
|
|
|
typedef const char const_char;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|