diff options
author | Bruce Momjian | 1997-09-08 21:56:23 +0000 |
---|---|---|
committer | Bruce Momjian | 1997-09-08 21:56:23 +0000 |
commit | 59f6a57e59fe8353f9edaa3703516ea67e06672b (patch) | |
tree | 1b083fb66cf0be3890480a1ed5fb077dd7293790 /src/backend/tioga | |
parent | 075cede74858a9a04e97097b1ccd555121516c20 (diff) |
Used modified version of indent that understands over 100 typedefs.
Diffstat (limited to 'src/backend/tioga')
-rw-r--r-- | src/backend/tioga/tgRecipe.c | 14 | ||||
-rw-r--r-- | src/backend/tioga/tgRecipe.h | 5 |
2 files changed, 10 insertions, 9 deletions
diff --git a/src/backend/tioga/tgRecipe.c b/src/backend/tioga/tgRecipe.c index e5156fe7769..cb3e0fc6d3f 100644 --- a/src/backend/tioga/tgRecipe.c +++ b/src/backend/tioga/tgRecipe.c @@ -11,7 +11,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/tioga/Attic/tgRecipe.c,v 1.5 1997/09/08 02:30:08 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/tioga/Attic/tgRecipe.c,v 1.6 1997/09/08 21:48:01 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -44,9 +44,9 @@ static Arr_TgString *TextArray2ArrTgString(char *str); "select * from Edge e where e.belongsTo = '%s'" /* static functions only used here */ -static void fillTgElement(TgElement * elem, PortalBuffer * pbuf, int tupno); -static void fillTgNode(TgRecipe * r, TgNode * node, PortalBuffer * pbuf, int tupno); -static TgRecipe *fillTgRecipe(PortalBuffer * pbuf, int tupno); +static void fillTgElement(TgElement * elem, PortalBuffer *pbuf, int tupno); +static void fillTgNode(TgRecipe * r, TgNode * node, PortalBuffer *pbuf, int tupno); +static TgRecipe *fillTgRecipe(PortalBuffer *pbuf, int tupno); static void lookupEdges(TgRecipe * r, char *name); static void fillAllNodes(TgRecipe * r, char *name); static void fillAllElements(TgRecipe * r, char *name); @@ -174,7 +174,7 @@ fillTgNode -------------------------------------- */ void -fillTgNode(TgRecipe * r, TgNode * node, PortalBuffer * pbuf, int tupno) +fillTgNode(TgRecipe * r, TgNode * node, PortalBuffer *pbuf, int tupno) { char *nodeType; char *nodeElem; @@ -259,7 +259,7 @@ fillTgElement ------------------------------------ */ void -fillTgElement(TgElement * elem, PortalBuffer * pbuf, int tupno) +fillTgElement(TgElement * elem, PortalBuffer *pbuf, int tupno) { char *srcLang, *elemType; @@ -621,7 +621,7 @@ fillTgRecipe and converts it to a C TgRecipe strcture ------------------------------------ */ TgRecipe * -fillTgRecipe(PortalBuffer * pbuf, int tupno) +fillTgRecipe(PortalBuffer *pbuf, int tupno) { TgRecipe *r; int i, diff --git a/src/backend/tioga/tgRecipe.h b/src/backend/tioga/tgRecipe.h index 8dc0292061a..47e1bbb8f6c 100644 --- a/src/backend/tioga/tgRecipe.h +++ b/src/backend/tioga/tgRecipe.h @@ -11,7 +11,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: tgRecipe.h,v 1.4 1997/09/08 20:57:05 momjian Exp $ + * $Id: tgRecipe.h,v 1.5 1997/09/08 21:48:03 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -27,10 +27,11 @@ typedef struct { double x, y; -} Point; /* this should match whatever is in +} Point; /* this should match whatever is in * * + * * geo-decls.h */ #endif /* TIOGA_FRONTEND */ |