+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
* 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
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,
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));
+
+
+
+
return cp;
}
-void strip_line(line)
+static void strip_line(line)
char *line;
{
char *p;
return 0;
}
-errcode_t parse_line(line, state)
+static errcode_t parse_line(line, state)
char *line;
struct parse_state *state;
{