File: rsfe.c

package info (click to toggle)
insighttoolkit 3.6.0-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 94,956 kB
  • ctags: 74,981
  • sloc: cpp: 355,621; ansic: 195,070; fortran: 28,713; python: 3,802; tcl: 1,996; sh: 1,175; java: 583; makefile: 415; csh: 184; perl: 175
file content (91 lines) | stat: -rw-r--r-- 2,036 bytes parent folder | download | duplicates (16)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/* read sequential formatted external */
#include "v3p_f2c.h"
#include "fio.h"
#include "fmt.h"
#ifdef __cplusplus
extern "C" {
#endif

 int
xrd_SL(Void)
{       int ch;
        if(!f__curunit->uend)
                while((ch=getc(f__cf))!='\n')
                        if (ch == EOF) {
                                f__curunit->uend = 1;
                                break;
                                }
        f__cursor=f__recpos=0;
        return(1);
}

 int
x_getc(Void)
{       int ch;
        if(f__curunit->uend) return(EOF);
        ch = getc(f__cf);
        if(ch!=EOF && ch!='\n')
        {       f__recpos++;
                return(ch);
        }
        if(ch=='\n')
        {       (void) ungetc(ch,f__cf);
                return(ch);
        }
        if(f__curunit->uend || feof(f__cf))
        {       errno=0;
                f__curunit->uend=1;
                return(-1);
        }
        return(-1);
}

 int
x_endp(Void)
{
        xrd_SL();
        return f__curunit->uend == 1 ? EOF : 0;
}

 int
x_rev(Void)
{
        (void) xrd_SL();
        return(0);
}
#ifdef KR_headers
integer s_rsfe(a) cilist *a; /* start */
#else
integer s_rsfe(cilist *a) /* start */
#endif
{       int n;
        if(!f__init) f_init();
        f__reading=1;
        f__sequential=1;
        f__formatted=1;
        f__external=1;
        if(n=c_sfe(a)) return(n);
        f__elist=a;
        f__cursor=f__recpos=0;
        f__scale=0;
        f__fmtbuf=a->cifmt;
        f__cf=f__curunit->ufd;
        if(pars_f(f__fmtbuf)<0) err(a->cierr,100,"startio");
        f__getn= x_getc;
        f__doed= rd_ed;
        f__doned= rd_ned;
        fmt_bg();
        f__doend=x_endp;
        f__donewrec=xrd_SL;
        f__dorevert=x_rev;
        f__cblank=f__curunit->ublnk;
        f__cplus=0;
        if(f__curunit->uwrt && f__nowreading(f__curunit))
                err(a->cierr,errno,"read start");
        if(f__curunit->uend)
                err(f__elist->ciend,(EOF),"read start");
        return(0);
}
#ifdef __cplusplus
}
#endif