ack/lang/pc/libpc/rcka.c

17 lines
392 B
C
Raw Permalink Normal View History

1994-06-24 14:02:31 +00:00
/* $Id$ */
1990-11-06 13:16:57 +00:00
/*
* (c) copyright 1990 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
1989-05-03 09:53:25 +00:00
/* Author: Hans van Eck */
2018-06-17 20:30:27 +00:00
#include "pc.h"
2018-06-17 14:11:29 +00:00
#include <em_abs.h>
1989-05-03 09:53:25 +00:00
2018-06-17 20:30:27 +00:00
void _rcka(struct array_descr* descr, int index)
1989-05-03 09:53:25 +00:00
{
2018-06-17 14:11:29 +00:00
if (index < descr->lbound || index > (int)descr->n_elts_min_one + descr->lbound)
1991-02-22 16:57:42 +00:00
_trp(EARRAY);
1989-05-03 09:53:25 +00:00
}