Skip to content

AFNI/NIfTI Server

Sections
Personal tools
You are here: Home » AFNI » Documentation

Doxygen Source Code Documentation


Main Page   Alphabetical List   Data Structures   File List   Data Fields   Globals   Search  

util.c File Reference

#include "sys/types.h"
#include "sys/stat.h"
#include "f2c.h"
#include "fio.h"

Go to the source code of this file.


Functions

VOID g_char (char *a, ftnlen alen, char *b)
VOID b_char (char *a, char *b, ftnlen blen)

Function Documentation

VOID b_char char *    a,
char *    b,
ftnlen    blen
 

Definition at line 34 of file util.c.

References a, and i.

Referenced by f_inqu(), and l_read().

00036 {       int i;
00037         for(i=0;i<blen && *a!=0;i++) *b++= *a++;
00038         for(;i<blen;i++) *b++=' ';
00039 }

VOID g_char char *    a,
ftnlen    alen,
char *    b
 

Definition at line 12 of file util.c.

References a.

Referenced by f_inqu(), and f_open().

00014 {
00015         char *x = a + alen, *y = b + alen;
00016 
00017         for(;; y--) {
00018                 if (x <= a) {
00019                         *b = 0;
00020                         return;
00021                         }
00022                 if (*--x != ' ')
00023                         break;
00024                 }
00025         *y-- = 0;
00026         do *y-- = *x;
00027                 while(x-- > a);
00028         }
 

Powered by Plone

This site conforms to the following standards: