File: sue.c

package info (click to toggle)
insighttoolkit 3.18.0-5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 110,432 kB
  • ctags: 74,559
  • sloc: cpp: 412,627; ansic: 196,210; fortran: 28,000; python: 3,852; tcl: 2,005; sh: 1,186; java: 583; makefile: 458; csh: 220; perl: 193; xml: 20
file content (90 lines) | stat: -rw-r--r-- 2,314 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
#include "v3p_f2c.h"
#include "fio.h"
#ifdef __cplusplus
extern "C" {
#endif
extern uiolen f__reclen;
OFF_T f__recloc;

 int
#ifdef KR_headers
c_sue(a) cilist *a;
#else
c_sue(cilist *a)
#endif
{
        f__external=f__sequential=1;
        f__formatted=0;
        f__curunit = &f__units[a->ciunit];
        if(a->ciunit >= MXUNIT || a->ciunit < 0)
                err(a->cierr,101,"startio");
        f__elist=a;
        if(f__curunit->ufd==NULL && fk_open(SEQ,UNF,a->ciunit))
                err(a->cierr,114,"sue");
        f__cf=f__curunit->ufd;
        if(f__curunit->ufmt) err(a->cierr,103,"sue")
        if(!f__curunit->useek) err(a->cierr,103,"sue")
        return(0);
}
#ifdef KR_headers
integer s_rsue(a) cilist *a;
#else
integer s_rsue(cilist *a)
#endif
{
        int n;
        if(!f__init) f_init();
        f__reading=1;
        if(n=c_sue(a)) return(n);
        f__recpos=0;
        if(f__curunit->uwrt && f__nowreading(f__curunit))
                err(a->cierr, errno, "read start");
        if(fread((char *)&f__reclen,sizeof(uiolen),1,f__cf)
                != 1)
        {       if(feof(f__cf))
                {       f__curunit->uend = 1;
                        err(a->ciend, EOF, "start");
                }
                clearerr(f__cf);
                err(a->cierr, errno, "start");
        }
        return(0);
}
#ifdef KR_headers
integer s_wsue(a) cilist *a;
#else
integer s_wsue(cilist *a)
#endif
{
        int n;
        if(!f__init) f_init();
        if(n=c_sue(a)) return(n);
        f__reading=0;
        f__reclen=0;
        if(f__curunit->uwrt != 1 && f__nowwriting(f__curunit))
                err(a->cierr, errno, "write start");
        f__recloc=FTELL(f__cf);
        FSEEK(f__cf,(OFF_T)sizeof(uiolen),SEEK_CUR);
        return(0);
}
integer e_wsue(Void)
{       OFF_T loc;
        fwrite((char *)&f__reclen,sizeof(uiolen),1,f__cf);
#ifdef ALWAYS_FLUSH
        if (fflush(f__cf))
                err(f__elist->cierr, errno, "write end");
#endif
        loc=FTELL(f__cf);
        FSEEK(f__cf,f__recloc,SEEK_SET);
        fwrite((char *)&f__reclen,sizeof(uiolen),1,f__cf);
        FSEEK(f__cf,loc,SEEK_SET);
        return(0);
}
integer e_rsue(Void)
{
        FSEEK(f__cf,(OFF_T)(f__reclen-f__recpos+sizeof(uiolen)),SEEK_CUR);
        return(0);
}
#ifdef __cplusplus
}
#endif