Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
att
GitHub Repository: att/ast
Path: blob/master/src/cmd/3d/ast_3d.h
1808 views
1
/***********************************************************************
2
* *
3
* This software is part of the ast package *
4
* Copyright (c) 1989-2011 AT&T Intellectual Property *
5
* and is licensed under the *
6
* Eclipse Public License, Version 1.0 *
7
* by AT&T Intellectual Property *
8
* *
9
* A copy of the License is available at *
10
* http://www.eclipse.org/org/documents/epl-v10.html *
11
* (with md5 checksum b35adb5213ca9657e911e9befb180842) *
12
* *
13
* Information and Software Systems Research *
14
* AT&T Research *
15
* Florham Park NJ *
16
* *
17
* Glenn Fowler <[email protected]> *
18
* David Korn <[email protected]> *
19
* Eduardo Krell <[email protected]> *
20
* *
21
***********************************************************************/
22
#pragma prototyped
23
/*
24
* libast 3d symbol mappings to minimize pollution
25
*/
26
27
#ifndef _NAME3D_AST_H
28
#define _NAME3D_AST_H
29
30
#define _ast_state _3d_ast_state
31
#define _ast_getenv _3d_ast_getenv
32
#define _ast_info _3d_ast_info
33
#define _ast_setenviron _3d_ast_setenviron
34
#define _hash_info_ _3d_hash_info
35
#define astintercept _3d_astintercept
36
#define fmterror _3d_fmterror
37
#define fmttime _3d_fmttime
38
#define hashalloc _3d_hashalloc
39
#define hashdone _3d_hashdone
40
#define hashfree _3d_hashfree
41
#define hashlook _3d_hashlook
42
#define hashnext _3d_hashnext
43
#define hashscan _3d_hashscan
44
#define hashsize _3d_hashsize
45
#define hashwalk _3d_hashwalk
46
#define pathbin _3d_pathbin
47
#define pathcheck _3d_pathcheck
48
#define pathshell _3d_pathshell
49
#define pathtemp _3d_pathtemp
50
#define strmatch _3d_strmatch
51
#define strsubmatch _3d_strsubmatch
52
#define tokscan _3d_tokscan
53
#define touch _3d_touch
54
55
#include <ast_lib.h>
56
57
#undef _lib_fmterror
58
59
extern char* _3d_ast_getenv(const char*);
60
61
#endif
62
63