File: sizes.c

package info (click to toggle)
cl-fftw3 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 116 kB
  • sloc: lisp: 904; makefile: 40; ansic: 6
file content (7 lines) | stat: -rw-r--r-- 171 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
#include <stdio.h>
#include <fftw3.h>

main () {
  printf("Size of fftw_complex: %d\n", sizeof (fftw_complex));
  printf("Size of fftw_plan: %d\n", sizeof (fftw_plan));
}