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