mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Another pgindent run with updated typedefs.
This commit is contained in:
		@@ -7,7 +7,7 @@
 | 
			
		||||
 * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
 | 
			
		||||
 * Portions Copyright (c) 1994, Regents of the University of California
 | 
			
		||||
 *
 | 
			
		||||
 * $Id: pg_list.h,v 1.39 2003/08/04 02:40:13 momjian Exp $
 | 
			
		||||
 * $Id: pg_list.h,v 1.40 2003/08/08 21:42:48 momjian Exp $
 | 
			
		||||
 *
 | 
			
		||||
 *-------------------------------------------------------------------------
 | 
			
		||||
 */
 | 
			
		||||
@@ -137,7 +137,7 @@ typedef struct FastList
 | 
			
		||||
{
 | 
			
		||||
	List	   *head;
 | 
			
		||||
	List	   *tail;
 | 
			
		||||
}	FastList;
 | 
			
		||||
} FastList;
 | 
			
		||||
 | 
			
		||||
#define FastListInit(fl)	( (fl)->head = (fl)->tail = NIL )
 | 
			
		||||
#define FastListFromList(fl, l)  \
 | 
			
		||||
@@ -160,11 +160,11 @@ extern List *lappend(List *list, void *datum);
 | 
			
		||||
extern List *lappendi(List *list, int datum);
 | 
			
		||||
extern List *lappendo(List *list, Oid datum);
 | 
			
		||||
extern List *nconc(List *list1, List *list2);
 | 
			
		||||
extern void FastAppend(FastList * fl, void *datum);
 | 
			
		||||
extern void FastAppendi(FastList * fl, int datum);
 | 
			
		||||
extern void FastAppendo(FastList * fl, Oid datum);
 | 
			
		||||
extern void FastConc(FastList * fl, List *cells);
 | 
			
		||||
extern void FastConcFast(FastList * fl, FastList * fl2);
 | 
			
		||||
extern void FastAppend(FastList *fl, void *datum);
 | 
			
		||||
extern void FastAppendi(FastList *fl, int datum);
 | 
			
		||||
extern void FastAppendo(FastList *fl, Oid datum);
 | 
			
		||||
extern void FastConc(FastList *fl, List *cells);
 | 
			
		||||
extern void FastConcFast(FastList *fl, FastList *fl2);
 | 
			
		||||
extern void *nth(int n, List *l);
 | 
			
		||||
extern int	length(List *list);
 | 
			
		||||
extern void *llast(List *list);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user