]> git.ozlabs.org Git - ccan/blob - api_new_free.c
da3575ddbf1dc9da32c5b1f40f73fb7d7ccb277b
[ccan] / api_new_free.c
1 #include "../test/helpers.h"
2
3 int main(void) {
4     struct strgrp *ctx;
5
6     plan_tests(1);
7     create(ctx, DEFAULT_SIMILARITY);
8     strgrp_free(ctx);
9     pass("Successfully initialised strgrp instance");
10     return exit_status();
11 }