xref: /libCEED/tests/t008-ceed.c (revision 6a6b797f790a7f197cde448212987b3ead5d18fa)
1 /// @file
2 /// Test creation help message
3 /// \test Test creation help message
4 #include <ceed.h>
5 #include <string.h>
6 
main(int argc,char ** argv)7 int main(int argc, char **argv) {
8   Ceed ceed;
9 
10   char help_resource[256];
11   sprintf(help_resource, "help:%s", argv[1]);
12 
13   CeedInit(help_resource, &ceed);
14 
15   CeedDestroy(&ceed);
16   return 0;
17 }
18