#ifndef CLAYOUT_CLAY_BASE_H #define CLAYOUT_CLAY_BASE_H typedef struct clay_ctx_t *clay_ctx; typedef struct clay_t *clay; clay_ctx clay_create_context(void); void clay_destroy_context(clay_ctx); void clay_set(clay, const char*, ...); clay clay_clone(clay); #endif //CLAYOUT_CLAY_BASE_H