From: Ezra Peisach Date: Mon, 2 Jul 2001 18:27:09 +0000 (+0000) Subject: * prof_int.h: Provide prototypes for profile_ser_size, X-Git-Tag: krb5-1.3-alpha1~1252 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fb62e6c2e84771d0b895d877fc45960f64345e71;p=krb5.git * prof_int.h: Provide prototypes for profile_ser_size, profile_ser_externalize, profile_ser_internalize. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13546 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/util/profile/ChangeLog b/src/util/profile/ChangeLog index b6da31638..d51754303 100644 --- a/src/util/profile/ChangeLog +++ b/src/util/profile/ChangeLog @@ -1,3 +1,8 @@ +2001-07-02 Ezra Peisach + + * prof_int.h: Provide prototypes for profile_ser_size, + profile_ser_externalize, profile_ser_internalize. + 2001-06-11 Ezra Peisach * test_profile.c: Include for strcmp() prototype. diff --git a/src/util/profile/prof_int.h b/src/util/profile/prof_int.h index 76cebf136..f030c2952 100644 --- a/src/util/profile/prof_int.h +++ b/src/util/profile/prof_int.h @@ -188,6 +188,14 @@ errcode_t profile_close_file PROTOTYPE ((prf_file_t profile)); /* prof_init.c -- included from profile.h */ +errcode_t profile_ser_size + PROTOTYPE ((const char *, profile_t, size_t *)); + +errcode_t profile_ser_externalize + PROTOTYPE ((const char *, profile_t, unsigned char **, size_t *)); + +errcode_t profile_ser_internalize + PROTOTYPE ((const char *, profile_t *, unsigned char **, size_t *)); /* prof_get.c */