File: s_rnge.c

package info (click to toggle)
vxl 1.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 124,144 kB
  • ctags: 94,084
  • sloc: cpp: 652,168; ansic: 178,141; fortran: 27,980; sh: 5,248; python: 1,941; lisp: 1,107; makefile: 292; perl: 255; xml: 184
file content (32 lines) | stat: -rw-r--r-- 791 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
#include "stdio.h"
#include "v3p_f2c.h"
#ifdef __cplusplus
extern "C" {
#endif

/* called when a subscript is out of range */

#ifdef KR_headers
extern VOID sig_die();
integer s_rnge(varn, offset, procn, line) char *varn, *procn; ftnint offset, line;
#else
extern VOID sig_die(char*,int);
integer s_rnge(char *varn, ftnint offset, char *procn, ftnint line)
#endif
{
register int i;

fprintf(stderr, "Subscript out of range on file line %ld, procedure ",
        (long)line);
while((i = *procn) && i != '_' && i != ' ')
        putc(*procn++, stderr);
fprintf(stderr, ".\nAttempt to access the %ld-th element of variable ",
        (long)offset+1);
while((i = *varn) && i != ' ')
        putc(*varn++, stderr);
sig_die(".", 1);
return 0;       /* not reached */
}
#ifdef __cplusplus
}
#endif