diff options
author | Greg Hudson <ghudson@mit.edu> | 2013-02-14 11:41:10 -0500 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2013-02-14 11:42:28 -0500 |
commit | 6dda284554a869f7fa1e6d2a035df06c97f103ef (patch) | |
tree | 6854b38ce7274b914b82b20bfb65eb8130df1ab8 /src/util/support/k5buf-int.h | |
parent | 80f53c8b2c745e75dc9d22acba63812d8533c133 (diff) | |
download | krb5-6dda284554a869f7fa1e6d2a035df06c97f103ef.tar.gz krb5-6dda284554a869f7fa1e6d2a035df06c97f103ef.tar.xz krb5-6dda284554a869f7fa1e6d2a035df06c97f103ef.zip |
Modernize k5buf
Rename the krb5int_buf_ family of functions to use the k5_ prefix for
brevity. Reformat some k5buf implementation code to match current
practices.
Diffstat (limited to 'src/util/support/k5buf-int.h')
-rw-r--r-- | src/util/support/k5buf-int.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/util/support/k5buf-int.h b/src/util/support/k5buf-int.h index cc3c04c6e1..6f2ec19e7c 100644 --- a/src/util/support/k5buf-int.h +++ b/src/util/support/k5buf-int.h @@ -1,5 +1,5 @@ /* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */ -/* util/support/k5buf-int.h */ +/* util/support/k5buf-int.h - Internal declarations for string buffers */ /* * Copyright 2008 Massachusetts Institute of Technology. * All Rights Reserved. @@ -24,17 +24,16 @@ * or implied warranty. */ -/* Internal declarations for the k5buf string buffer module */ - #ifndef K5BUF_INT_H #define K5BUF_INT_H #include "k5-platform.h" #include "k5-buf.h" -/* The k5buf structure has funny field names to discourage callers - from violating the abstraction barrier. Define less funny names - for them here. */ +/* + * The k5buf structure has funny field names to discourage callers from + * violating the abstraction barrier. Define less funny names for them here. + */ #define buftype xx_buftype #define data xx_data #define space xx_space |