summaryrefslogtreecommitdiffstats
path: root/scripts/list-man-pages.sh
blob: 3acdf7ae108cd0b7d2ecf41f9957e8cf6ada2d47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
# SPDX-License-Identifier: LGPL-2.1-or-later

file=$1

for func in $(sed -n 's/ \* \([a-z_][a-z_0-9]*\)() -.*/\1/p' $file); do
	echo ${func}
done

for struct in $(sed -n 's/ \* struct \([a-z_][a-z_0-9]*\) -.*/\1/p' $file); do
	echo ${struct}
done

for enum in $(sed -n 's/ \* enum \([a-z_][a-z_0-9]*\) -.*/\1/p' $file); do
	echo ${enum}
done