* kparse.h: Add prototypes for fGetChar(), fGetParameterSet(),
authorEzra Peisach <epeisach@mit.edu>
Tue, 17 Oct 2000 15:00:06 +0000 (15:00 +0000)
committerEzra Peisach <epeisach@mit.edu>
Tue, 17 Oct 2000 15:00:06 +0000 (15:00 +0000)
ParmCompare(), FreeParameterSet(), fGetKeywordValue(),
fGetToken(), fGetLiteral(), fUngetChar().

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12771 dc483132-0cff-0310-8789-dd5450dbe970

src/include/kerberosIV/ChangeLog
src/include/kerberosIV/kparse.h

index dd7aed80b37c248dbe7b0f860d41579157fde95f..0b4902e83508a1054f3f631f919a5e3db1890577 100644 (file)
@@ -1,3 +1,9 @@
+2000-10-17  Ezra Peisach  <epeisach@mit.edu>
+
+       * kparse.h: Add prototypes for fGetChar(), fGetParameterSet(),
+       ParmCompare(), FreeParameterSet(), fGetKeywordValue(),
+       fGetToken(), fGetLiteral(), fUngetChar().
+
 2000-08-31  Tom Yu  <tlyu@mit.edu>
 
        * krb.h: Add prototypes for krb_life_to_time() and
index 3562565bec062f71ddd3cc3182b854a7ca356fd6..9ab3082c2d2220002feaf097b3e9b509c791bb4a 100644 (file)
@@ -89,4 +89,20 @@ typedef struct {
 
 #define PARMCOUNT(P) (sizeof(P)/sizeof(P[0]))
 
+int fGetChar PROTOTYPE ((FILE *fp));
+int fGetParameterSet PROTOTYPE ((FILE *fp, parmtable parm[], int parmcount));
+int ParmCompare PROTOTYPE((parmtable parm[], int parmcount, char *keyword, 
+                          char *value));
+
+void FreeParameterSet PROTOTYPE((parmtable parm[], int parmcount));
+
+int fGetKeywordValue PROTOTYPE((FILE *fp, char *keyword, int klen, 
+                              char *value, int vlen));
+
+int fGetToken PROTOTYPE((FILE *fp, char *dest, int maxlen));
+
+int fGetLiteral PROTOTYPE((FILE *fp));
+
+int fUngetChar PROTOTYPE((int ch, FILE *fp));
+
 #endif /* KPARSE_DEFS */