* prof_parse.c (strip_line,parse_line): Declare as static
authorEzra Peisach <epeisach@mit.edu>
Tue, 15 Aug 1995 21:20:25 +0000 (21:20 +0000)
committerEzra Peisach <epeisach@mit.edu>
Tue, 15 Aug 1995 21:20:25 +0000 (21:20 +0000)
* prof_int.h: Add missing prototypes

Cleanup -Wmissing_prototypes complaints

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

src/util/profile/ChangeLog
src/util/profile/prof_int.h
src/util/profile/prof_parse.c

index f35fad43bec5d0c5b89dfcce0b544a4651434be9..2c53cbad2bf133b61800051da9fed20fb9fbf9c8 100644 (file)
@@ -1,3 +1,9 @@
+Tue Aug 15 17:17:40 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
+
+       * prof_parse.c (strip_line,parse_line): Declare as static.
+
+       * prof_int.h: Add missing prototypes
+
 Thu Jul  6 10:05:47 1995  Ezra Peisach  <epeisach@kangaroo.mit.edu>
 
        * prof_file.c: prof_int.h must be included after stdio.h
@@ -7,7 +13,6 @@ Wed July 5 15:52:31 1995  James Mattly  <mattly@fusion.com>
        * prof_int.h added _MACINTOSH conditional
        * test_parse.c added _MACINTOSH conditional
 
-=======
 Fri Jun  9 19:00:19 1995    <tytso@rsx-11.mit.edu>
 
        * configure.in: Remove standardized set of autoconf macros, which
index 8327da498e10bd3637984b4e718f844b63a96c5e..3f71b920e870e8e0cb2d2028107904bb9352a3cd 100644 (file)
@@ -79,6 +79,9 @@ extern errcode_t profile_create_node
        PROTOTYPE((const char *name, const char *value,
                   struct profile_node **ret_node));
 
+extern errcode_t profile_verify_node
+       PROTOTYPE((struct profile_node *node));
+
 extern errcode_t profile_add_node
        PROTOTYPE ((struct profile_node *section,
                    const char *name, const char *value,
@@ -121,4 +124,18 @@ extern void profile_release
        PROTOTYPE ((profile_t profile));
 
 
+extern errcode_t profile_get_values
+       PROTOTYPE ((profile_t profile, const char **names, char ***ret_values));
+extern errcode_t profile_get_string
+       PROTOTYPE((profile_t profile, const char *name, const char *subname, 
+                       const char *subsubname, const char *def_val,
+                       char **ret_string));
+extern errcode_t profile_get_integer
+       PROTOTYPE((profile_t profile, const char *name, const char *subname,
+                       const char *subsubname, int def_val,
+                       int *ret_default));
+
+
+
+
 
index 1e281e0b2cd29cb5eb8cfcfdf72817b96358f0f9..fde563fac61b715a595fe1bde3d48000b8b31c1d 100644 (file)
@@ -27,7 +27,7 @@ static char *skip_over_blanks(cp)
        return cp;
 }
 
-void strip_line(line)
+static void strip_line(line)
        char    *line;
 {
        char    *p;
@@ -139,7 +139,7 @@ static errcode_t parse_std_line(line, state)
        return 0;
 }
 
-errcode_t parse_line(line, state)
+static errcode_t parse_line(line, state)
        char    *line;
        struct parse_state *state;
 {