-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathjamarray.h
More file actions
45 lines (38 loc) · 1.28 KB
/
jamarray.h
File metadata and controls
45 lines (38 loc) · 1.28 KB
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
/****************************************************************************/
/* */
/* Module: jamarray.h */
/* */
/* Copyright (C) Altera Corporation 1997 */
/* */
/* Description: Constants and function prototypes for array support */
/* */
/****************************************************************************/
/****************************************************************************/
/* */
/* Actel version 1.1 May 2003 */
/* */
/****************************************************************************/
#ifndef INC_JAMARRAY_H
#define INC_JAMARRAY_H
/****************************************************************************/
/* */
/* Function Prototypes */
/* */
/****************************************************************************/
JAM_RETURN_TYPE jam_read_boolean_array_data
(
JAMS_HEAP_RECORD *heap_record,
char *statement_buffer
);
JAM_RETURN_TYPE jam_read_integer_array_data
(
JAMS_HEAP_RECORD *heap_record,
char *statement_buffer
);
JAM_RETURN_TYPE jam_get_array_value
(
JAMS_SYMBOL_RECORD *symbol_record,
long index,
long *value
);
#endif /* INC_JAMARRAY_H */