]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MINICERN/packlib/kernlib/kerngen/ccgenci/citell.c
Bugfix in AliPoints2Memory
[u/mrichter/AliRoot.git] / MINICERN / packlib / kernlib / kerngen / ccgenci / citell.c
1 /*
2  * $Id$
3  *
4  * $Log$
5  * Revision 1.2  1997/02/04 17:35:22  mclareni
6  * Merge Winnt and 97a versions
7  *
8  * Revision 1.1.1.1.2.1  1997/01/21 11:30:21  mclareni
9  * All mods for Winnt 96a on winnt branch
10  *
11  * Revision 1.1.1.1  1996/02/15 17:49:39  mclareni
12  * Kernlib
13  *
14  */
15 #include "kerngen/pilot.h"
16 #include "kerngen/fortranc.h"
17
18 /*>    ROUTINE CITELL
19   CERN PROGLIB# Z311    CITELL          .VERSION KERNFOR  4.31  911111
20   ORIG. 12/10/91, JZ
21       CALL CITELL (LUNDES, JCBYT, ISTAT)
22       get the current position of the file :
23        LUNDES  file descriptor
24       *JCBYT   number of bytes before current
25       *ISTAT   status, =zero if success
26 */
27 #include "kerngen/cf_seek.h"
28 #include "kerngen/cf_xaft.h"
29 #if defined(CERNLIB_QX_SC)
30 void type_of_call citell_(lundes, jcbyt, stat)
31 #endif
32 #if defined(CERNLIB_QXNO_SC)
33 void type_of_call citell(lundes, jcbyt, stat)
34 #endif
35 #if defined(CERNLIB_QXCAPT)
36 void type_of_call CITELL(lundes, jcbyt, stat)
37 #endif
38       int  *lundes, *jcbyt, *stat;
39 {
40       int  fildes;
41       int  nboff;
42
43 /*        get position of the file        */
44
45       fildes = *lundes;
46       nboff  = lseek (fildes, 0, 1);
47       if (nboff < 0)               goto trouble;
48       *jcbyt = nboff;
49       *stat = 0;
50       return;
51
52 trouble:  *stat = -1;
53           perror (" error in CITELL");
54           return;
55 }
56 /*> END <----------------------------------------------------------*/