Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
C-datadec
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Duncan White
C-datadec
Commits
b67d5408
Commit
b67d5408
authored
34 years ago
by
dcw
Browse files
Options
Downloads
Patches
Plain Diff
went to new dunc style of list typedefs.
parent
45130002
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
struct.h
+19
-10
19 additions, 10 deletions
struct.h
with
19 additions
and
10 deletions
struct.h
+
19
−
10
View file @
b67d5408
...
...
@@ -14,37 +14,46 @@
*/
typedef
struct
declnlist_str
*
declnlist
;
typedef
struct
shapelist_str
*
shapelist
;
typedef
struct
paramlist_str
*
paramlist
;
typedef
struct
printlist_str
*
printlist
;
typedef
struct
printitem_str
*
printitem
;
struct
declnlist
;
typedef
struct
declnlist
*
declnlist
;
struct
shapelist
;
typedef
struct
shapelist
*
shapelist
;
struct
paramlist
;
typedef
struct
paramlist
*
paramlist
;
struct
printlist
;
typedef
struct
printlist
*
printlist
;
struct
printitem
;
typedef
struct
printitem
*
printitem
;
#define printitem_is_str 0
#define printitem_is_num 1
struct
printitem
_str
{
struct
printitem
{
int
tag
;
int
num
;
char
*
str
;
};
struct
printlist
_str
{
struct
printlist
{
printlist
next
;
printitem
item
;
};
struct
paramlist
_str
{
struct
paramlist
{
paramlist
next
;
char
*
type
;
char
*
name
;
};
struct
shapelist
_str
{
struct
shapelist
{
shapelist
next
;
char
*
name
;
paramlist
params
;
...
...
@@ -52,7 +61,7 @@ struct shapelist_str {
};
struct
declnlist
_str
{
struct
declnlist
{
declnlist
next
;
char
*
name
;
shapelist
shapes
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment