-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.h
52 lines (42 loc) · 1.89 KB
/
default.h
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
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/* CLIPS Version 6.24 06/05/06 */
/* */
/* DEFAULT ATTRIBUTE HEADER FILE */
/*******************************************************/
/*************************************************************/
/* Purpose: Provides functions for parsing the default */
/* attribute and determining default values based on */
/* slot constraints. */
/* */
/* Principal Programmer(s): */
/* Gary D. Riley */
/* */
/* Contributing Programmer(s): */
/* */
/* Revision History: */
/* */
/* 6.24: Support for deftemplate-slot-default-value */
/* function. */
/* */
/*************************************************************/
#ifndef _H_default
#define _H_default
#ifndef _H_constrnt
#include "constrnt.h"
#endif
#ifndef _H_evaluatn
#include "evaluatn.h"
#endif
#ifdef LOCALE
#undef LOCALE
#endif
#ifdef _DEFAULT_SOURCE_
#define LOCALE
#else
#define LOCALE extern
#endif
LOCALE void DeriveDefaultFromConstraints(void *,CONSTRAINT_RECORD *,DATA_OBJECT *,int,int);
LOCALE struct expr *ParseDefault(void *,char *,int,int,int,int *,int *,int *);
#endif