mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-13 07:52:22 -07:00
14 lines
209 B
C
14 lines
209 B
C
// This is test strictly for the granular (non-generated) version of the library to make sure it operates correctly
|
|
|
|
#include "metadesk.c"
|
|
|
|
int main()
|
|
{
|
|
Context ctx = {0};
|
|
init(& ctx);
|
|
|
|
|
|
|
|
deinit(& ctx);
|
|
}
|