Commit c264592d authored by Ulf Möller's avatar Ulf Möller
Browse files

Add includes in synopsis.

Submitted by: Mike Frysinger <vapier@gentoo.org>
parent 1bd06bd0
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -6,6 +6,8 @@ ASN1_OBJECT_new, ASN1_OBJECT_free, - object allocation functions


=head1 SYNOPSIS
=head1 SYNOPSIS


 #include <openssl/asn1.h>

 ASN1_OBJECT *ASN1_OBJECT_new(void);
 ASN1_OBJECT *ASN1_OBJECT_new(void);
 void ASN1_OBJECT_free(ASN1_OBJECT *a);
 void ASN1_OBJECT_free(ASN1_OBJECT *a);


+2 −0
Original line number Original line Diff line number Diff line
@@ -8,6 +8,8 @@ ASN1_STRING utility functions


=head1 SYNOPSIS
=head1 SYNOPSIS


 #include <openssl/asn1.h>

 int ASN1_STRING_length(ASN1_STRING *x);
 int ASN1_STRING_length(ASN1_STRING *x);
 unsigned char * ASN1_STRING_data(ASN1_STRING *x);
 unsigned char * ASN1_STRING_data(ASN1_STRING *x);


+2 −0
Original line number Original line Diff line number Diff line
@@ -7,6 +7,8 @@ ASN1_STRING allocation functions


=head1 SYNOPSIS
=head1 SYNOPSIS


 #include <openssl/asn1.h>

 ASN1_STRING * ASN1_STRING_new(void);
 ASN1_STRING * ASN1_STRING_new(void);
 ASN1_STRING * ASN1_STRING_type_new(int type);
 ASN1_STRING * ASN1_STRING_type_new(int type);
 void ASN1_STRING_free(ASN1_STRING *a);
 void ASN1_STRING_free(ASN1_STRING *a);
+2 −0
Original line number Original line Diff line number Diff line
@@ -6,6 +6,8 @@ ASN1_generate_nconf, ASN1_generate_v3 - ASN1 generation functions


=head1 SYNOPSIS
=head1 SYNOPSIS


 #include <openssl/asn1.h>

 ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf);
 ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf);
 ASN1_TYPE *ASN1_generate_v3(char *str, X509V3_CTX *cnf);
 ASN1_TYPE *ASN1_generate_v3(char *str, X509V3_CTX *cnf);


+2 −0
Original line number Original line Diff line number Diff line
@@ -6,6 +6,8 @@ CRYPTO_set_ex_data, CRYPTO_get_ex_data - internal application specific data func


=head1 SYNOPSIS
=head1 SYNOPSIS


 #include <openssl/crypto.h>

 int CRYPTO_set_ex_data(CRYPTO_EX_DATA *r, int idx, void *arg);
 int CRYPTO_set_ex_data(CRYPTO_EX_DATA *r, int idx, void *arg);


 void *CRYPTO_get_ex_data(CRYPTO_EX_DATA *r, int idx);
 void *CRYPTO_get_ex_data(CRYPTO_EX_DATA *r, int idx);
Loading