run make indent

This commit is contained in:
Fumitoshi UKAI
2001-11-24 02:01:26 +00:00
parent aa74d02025
commit 975c8f9d43
60 changed files with 4970 additions and 4688 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: textlist.h,v 1.2 2001/11/20 17:49:23 ukai Exp $ */
/* $Id: textlist.h,v 1.3 2001/11/24 02:01:26 ukai Exp $ */
#ifndef TEXTLIST_H
#define TEXTLIST_H
#include "Str.h"
@@ -17,11 +17,11 @@ typedef struct _generallist {
short nitem;
} GeneralList;
extern ListItem *newListItem(void *s, ListItem * n, ListItem * p);
extern ListItem *newListItem(void *s, ListItem *n, ListItem *p);
extern GeneralList *newGeneralList(void);
extern void pushValue(GeneralList * tl, void *s);
extern void *popValue(GeneralList * tl);
extern void *rpopValue(GeneralList * tl);
extern void pushValue(GeneralList *tl, void *s);
extern void *popValue(GeneralList *tl);
extern void *rpopValue(GeneralList *tl);
extern GeneralList *appendGeneralList(GeneralList *, GeneralList *);
/* Text list */
@@ -64,7 +64,7 @@ typedef struct _textlinelist {
} TextLineList;
extern TextLine *newTextLine(Str line, int pos);
extern void appendTextLine(TextLineList * tl, Str line, int pos);
extern void appendTextLine(TextLineList *tl, Str line, int pos);
#define newTextLineList() ((TextLineList *)newGeneralList())
#define pushTextLine(tl,lbuf) pushValue((GeneralList *)(tl),(void *)(lbuf))
#define popTextLine(tl) ((TextLine *)popValue((GeneralList *)(tl)))