File: test2.c

package info (click to toggle)
c-munipack 2.1.39-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 55,888 kB
  • sloc: ansic: 200,762; cpp: 106,129; lex: 9,035; yacc: 4,916; sh: 4,074; fortran: 2,613; xml: 2,105; python: 1,182; makefile: 546; perl: 104
file content (15 lines) | stat: -rw-r--r-- 207 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>

main(int argc, char *argv[])
{
	int	n;
	float	*r, *work;

	cffti_(&n, work);
	cfftf_(&n, r, work);
	cfftb_(&n, r, work);

	rffti_(&n, work);
	rfftf_(&n, r, work);
	rfftb_(&n, r, work);
}