]> git.ozlabs.org Git - ccan/blob - ccan/strgrp/test/api_new_free.c
jmap: fix tools/speed
[ccan] / ccan / strgrp / test / 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 }