Commit 0aa17f64 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

doc: Remove 'NGHTTP2_EXTERN' from api doc

parent 38cfc5c4
...@@ -222,6 +222,7 @@ def process_function(domain, infile): ...@@ -222,6 +222,7 @@ def process_function(domain, infile):
func_proto = ''.join(func_proto) func_proto = ''.join(func_proto)
func_proto = re.sub(r';\n$', '', func_proto) func_proto = re.sub(r';\n$', '', func_proto)
func_proto = re.sub(r'\s+', ' ', func_proto) func_proto = re.sub(r'\s+', ' ', func_proto)
func_proto = re.sub(r'NGHTTP2_EXTERN ', '', func_proto)
return FunctionDoc(func_proto, content, domain) return FunctionDoc(func_proto, content, domain)
def read_content(infile): def read_content(infile):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment