summaryrefslogtreecommitdiffstats
path: root/doc/list-man-pages.sh
diff options
context:
space:
mode:
Diffstat (limited to 'doc/list-man-pages.sh')
-rwxr-xr-xdoc/list-man-pages.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/list-man-pages.sh b/doc/list-man-pages.sh
new file mode 100755
index 0000000..fef237c
--- /dev/null
+++ b/doc/list-man-pages.sh
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+file=$1
+
+for func in $(sed -n 's/ \* \([a-z_]*\)() -.*/\1/p' $file); do
+ echo ${func}
+done
+
+for struct in $(sed -n 's/ \* struct \([a-z_]*\) -.*/\1/p' $file); do
+ echo ${struct}
+done
+
+for enum in $(sed -n 's/ \* enum \([a-z_]*\) -.*/\1/p' $file); do
+ echo ${enum}
+done