提交 d4ea9659 编写于 作者: R Rich Salz
上级 8a585601
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
=head1 NAME =head1 NAME
BIO_lookup_type,
BIO_ADDRINFO, BIO_ADDRINFO_next, BIO_ADDRINFO_free, BIO_ADDRINFO, BIO_ADDRINFO_next, BIO_ADDRINFO_free,
BIO_ADDRINFO_family, BIO_ADDRINFO_socktype, BIO_ADDRINFO_protocol, BIO_ADDRINFO_family, BIO_ADDRINFO_socktype, BIO_ADDRINFO_protocol,
BIO_ADDRINFO_address, BIO_ADDRINFO_address,
......
...@@ -2,8 +2,9 @@ ...@@ -2,8 +2,9 @@
=head1 NAME =head1 NAME
BIO_parse_hostserv - utility routines to parse a standard host and service BIO_hostserv_priorities,
string BIO_parse_hostserv
- utility routines to parse a standard host and service string
=head1 SYNOPSIS =head1 SYNOPSIS
......
=pod =pod
=head1 NAMES =head1 NAME
UI_STRING, UI_string_types, UI_STRING, UI_string_types, UI_get_string_type,
UI_get_input_flags, UI_get0_output_string,
UI_get0_action_string, UI_get0_result_string,
UI_get0_test_string, UI_get_result_minsize,
UI_get_result_maxsize, UI_set_result
- User interface string parsing
=head1 SYNOPSIS =head1 SYNOPSIS
......
...@@ -96,6 +96,9 @@ sub name_synopsis() ...@@ -96,6 +96,9 @@ sub name_synopsis()
} elsif ( $line =~ /typedef.* (\S+);/ ) { } elsif ( $line =~ /typedef.* (\S+);/ ) {
# a simple typedef: typedef ... NAME; # a simple typedef: typedef ... NAME;
$sym = $1; $sym = $1;
} elsif ( $line =~ /enum (\S*) {/ ) {
# an enumeration: enum ... {
$sym = $1;
} elsif ( $line =~ /#define ([A-Za-z0-9_]+)/ ) { } elsif ( $line =~ /#define ([A-Za-z0-9_]+)/ ) {
$sym = $1; $sym = $1;
} elsif ( $line =~ /([A-Za-z0-9_]+)\(/ ) { } elsif ( $line =~ /([A-Za-z0-9_]+)\(/ ) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册