Sanity clean-up.
authorjbj <devnull@localhost>
Fri, 28 May 2004 03:12:43 +0000 (03:12 +0000)
committerjbj <devnull@localhost>
Fri, 28 May 2004 03:12:43 +0000 (03:12 +0000)
CVS patchset: 7268
CVS date: 2004/05/28 03:12:43

rpmio/sexp/sexp-main.c
rpmio/sexp/sexp.h

index 14c204b..c7839e2 100644 (file)
@@ -9,9 +9,6 @@
 #include <popt.h>
 #include "sexp.h"
 
-/*@access sexpInputStream @*/
-/*@access sexpOutputStream @*/
-
 /*@unchecked@*/ /*@observer@*/
 static const char *help =
 "The program `sexp' reads, parses, and prints out S-expressions.\n"
index f96c7d0..a564c9c 100644 (file)
@@ -29,24 +29,29 @@ typedef /*@abstract@*/ struct sexpString_s * sexpString;
 typedef /*@abstract@*/ struct sexpList_s * sexpList;
 typedef /*@abstract@*/ union sexpObject_u * sexpObject;
 
+/* sexpIter */
+/* an "iterator" for going over lists */
+/* In this implementation, it is the same as a list */
+typedef /*@abstract@*/ sexpList sexpIter;
+
 typedef /*@abstract@*/ struct sexpInputStream_s * sexpInputStream;
 typedef /*@abstract@*/ struct sexpOutputStream_s * sexpOutputStream;
 
 /* sexpSimpleString */
 struct sexpSimpleString_s { 
-  long int length;
-  long int allocatedLength;
+    size_t length;
+    size_t allocatedLength;
 /*@null@*/
-  octet *string;
+    octet *string;
 };
 
 /* sexpString */
 struct sexpString_s {
-  int type;
+    int type;
 /*@null@*/
-  sexpSimpleString presentationHint;
+    sexpSimpleString presentationHint;
 /*@null@*/
-  sexpSimpleString string;
+    sexpSimpleString string;
 };
 
 /* sexpObject */
@@ -65,16 +70,11 @@ struct sexpList_s {
 /* so we can have a pointer to something of either type */
 union sexpObject_u {
 /*@unused@*/
-  struct sexpString_s string;
+    struct sexpString_s string;
 /*@unused@*/
-  struct sexpList_s list;
+    struct sexpList_s list;
 };
 
-/* sexpIter */
-/* an "iterator" for going over lists */
-/* In this implementation, it is the same as a list */
-typedef /*@abstract@*/ sexpList * sexpIter;
-
 /* Function prototypes */
 
 /* sexp-basic */