#include #include #include "config.h" /** * cdump - bundling and unbundling of C data structures * * cdump contains routines to bundle and unbundle C data structures, * especially enums and structs, into a human readable format. * * The cdump_parse tool in the tools directory creates the data structure * descriptions by parsing header files which are annotated with CDUMP_SAVED * (see cdump.h). * * This is based on Andrew Tridgell's "genstruct" project. * * License: GPL * Author: Rusty Russell */ int main(int argc, char *argv[]) { if (argc != 2) return 1; if (strcmp(argv[1], "depends") == 0) { printf("ccan/str\n"); printf("ccan/talloc\n"); return 0; } return 1; }