]> git.ozlabs.org Git - ccan/blob - junkcode/iasoule32@gmail.com-polynomial/_info.c
tdb2: test: convert (non-invasive) run tests to api tests.
[ccan] / junkcode / iasoule32@gmail.com-polynomial / _info.c
1 #include <string.h>
2 #include <stdio.h>
3 #include "config.h"
4
5 /**
6  * polynomial_adt - A polynomial module with ability to add,sub,mul derivate/integrate, compose ... polynomials 
7  *
8  * ..expansion in progress ...
9  *
10  * Example:
11  *      FULLY-COMPILABLE-INDENTED-TRIVIAL-BUT-USEFUL-EXAMPLE-HERE
12  */
13 int main(int argc, char *argv[])
14 {
15         if (argc != 2)
16                 return 1;
17
18         if (strcmp(argv[1], "depends") == 0) {
19                 /* Nothing. */
20                 return 0;
21         }
22
23         if (strcmp(argv[1], "libs") == 0) {
24                 printf("m\n");
25                 return 0;
26         }
27
28         return 1;
29 }