File: nifti_cdf_program.c

package info (click to toggle)
nifticlib 3.0.1-9.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,640 kB
  • sloc: ansic: 31,214; sh: 941; makefile: 460; csh: 138; python: 88; tcl: 42
file content (13 lines) | stat: -rw-r--r-- 229 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* A simple program to test linkage against the nifticdf package */

#include "nifticdf.h"

int main()
{
  double input= 7.0;
  double output;

  output = alnrel(&input);

  return (output > 0.0) ? EXIT_SUCCESS: EXIT_FAILURE ;
}