aboutsummaryrefslogtreecommitdiff
path: root/src/lib/krb5/asn.1/asn1_get.h
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2002-09-03 00:32:14 +0000
committerKen Raeburn <raeburn@mit.edu>2002-09-03 00:32:14 +0000
commit305a721199f87a4353eabd98d9d1bb55c43c657e (patch)
tree63ba21b522a88b1de12cfaf01bf88b82c8c2e7b7 /src/lib/krb5/asn.1/asn1_get.h
parent8bdfead10df7a773e007b736219d07eeeb092161 (diff)
downloadkrb5-305a721199f87a4353eabd98d9d1bb55c43c657e.zip
krb5-305a721199f87a4353eabd98d9d1bb55c43c657e.tar.gz
krb5-305a721199f87a4353eabd98d9d1bb55c43c657e.tar.bz2
Use prototype style definitions for functions. Avoid variable name "class"
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14810 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/krb5/asn.1/asn1_get.h')
-rw-r--r--src/lib/krb5/asn.1/asn1_get.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/krb5/asn.1/asn1_get.h b/src/lib/krb5/asn.1/asn1_get.h
index 873abc0..169490a 100644
--- a/src/lib/krb5/asn.1/asn1_get.h
+++ b/src/lib/krb5/asn.1/asn1_get.h
@@ -35,19 +35,19 @@
asn1_error_code asn1_get_tag_indef
(asn1buf *buf,
- asn1_class *class,
+ asn1_class *Class,
asn1_construction *construction,
asn1_tagnum *tagnum,
unsigned int *retlen, int *indef);
asn1_error_code asn1_get_tag
(asn1buf *buf,
- asn1_class *class,
+ asn1_class *Class,
asn1_construction *construction,
asn1_tagnum *tagnum,
unsigned int *retlen);
/* requires *buf is allocated
effects Decodes the tag in *buf. If class != NULL, returns
- the class in *class. Similarly, the construction,
+ the class in *Class. Similarly, the construction,
tag number, and length are returned in *construction,
*tagnum, and *retlen, respectively.
If *buf is empty to begin with,
@@ -66,13 +66,13 @@ asn1_error_code asn1_get_sequence
asn1_error_code asn1_get_id
(asn1buf *buf,
- asn1_class *class,
+ asn1_class *Class,
asn1_construction *construction,
asn1_tagnum *tagnum);
/* requires *buf is allocated
effects Decodes the group of identifier octets at *buf's
current position. If class != NULL, returns the class
- in *class. Similarly, the construction and tag number
+ in *Class. Similarly, the construction and tag number
are returned in *construction and *tagnum, respectively.
Returns ASN1_OVERRUN if *buf is exhausted. */