mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-08 07:17:12 +02:00
* Minimal C bindings * Fix version reporting in C bindings * Apply suggestions about C bindings implementation * Rename compat/ -> c-bindings/ * Add comment about indexing VMs in C bindings
10 lines
191 B
C
10 lines
191 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
struct JsonnetVm {
|
|
uint32_t id;
|
|
};
|
|
|
|
struct JsonnetVm *jsonnet_internal_make_vm_with_id(uint32_t id);
|
|
void jsonnet_internal_free_vm(struct JsonnetVm *x); |