diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-11-24 02:01:26 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2001-11-24 02:01:26 +0000 |
commit | 975c8f9d43d4026bf1d669b08646e9d29a9d02e4 (patch) | |
tree | fd8aed139ffef712ccbb2d392c13b3949b0192c5 /textlist.h | |
parent | [w3m-dev 02530] segfault for bad cookie from local (diff) | |
download | w3m-975c8f9d43d4026bf1d669b08646e9d29a9d02e4.tar.gz w3m-975c8f9d43d4026bf1d669b08646e9d29a9d02e4.zip |
run make indent
Diffstat (limited to '')
-rw-r--r-- | textlist.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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))) |