alef 0.63.0

Opinionated polyglot binding generator for Rust libraries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <assert.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "{{ header }}"

{% if declarations %}{{ declarations }}

{% endif %}
int main(void) {
{{ body | indent(4, true) }}
    return EXIT_SUCCESS;
}