lib: strictly type function return status enumerations
[babeltrace.git] / extras / gen-babeltrace-h.py
index f03110fc48f36fc63c6c1ef046f04ee374a8e51d..75d328febbf85af36c92f0fc63b26ce9303834fc 100644 (file)
@@ -45,11 +45,22 @@ def _c_includes_from_sections(sections):
     src = ''
 
     for section in sections:
+        # CTF writer is not part of the Babeltrace library
+        if 'ctf' in section.title.lower():
+            continue
+
         src += '/* {} */\n'.format(section.title)
+        lines = []
 
         for filename in sorted(section.filenames):
-            src += '#include <{}>\n'.format(filename)
+            # not part of the API
+            if 'func-status' in filename:
+                continue
 
+            lines.append('#include <{}>\n'.format(filename))
+
+        lines.sort()
+        src += ''.join(lines)
         src += '\n'
 
     return src[:-1]
@@ -89,5 +100,6 @@ def _main():
     print(_c_includes_from_sections(sections))
     print('#endif /* BABELTRACE_BABELTRACE_H */')
 
+
 if __name__ == '__main__':
     _main()
This page took 0.024402 seconds and 4 git commands to generate.