summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2001-07-02 18:27:09 +0000
committerEzra Peisach <epeisach@mit.edu>2001-07-02 18:27:09 +0000
commitfb62e6c2e84771d0b895d877fc45960f64345e71 (patch)
tree55a71594d1f59317ab2f76cd5adf1c4a922c0ab5 /src
parent4a71bc3b64bbb30ea40cdbf2f4a507718c673650 (diff)
downloadkrb5-fb62e6c2e84771d0b895d877fc45960f64345e71.tar.gz
krb5-fb62e6c2e84771d0b895d877fc45960f64345e71.tar.xz
krb5-fb62e6c2e84771d0b895d877fc45960f64345e71.zip
* 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
Diffstat (limited to 'src')
-rw-r--r--src/util/profile/ChangeLog5
-rw-r--r--src/util/profile/prof_int.h8
2 files changed, 13 insertions, 0 deletions
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 <epeisach@mit.edu>
+
+ * prof_int.h: Provide prototypes for profile_ser_size,
+ profile_ser_externalize, profile_ser_internalize.
+
2001-06-11 Ezra Peisach <epeisach@mit.edu>
* test_profile.c: Include <string.h> 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 */