3 lines
144 B
Bash
3 lines
144 B
Bash
|
#!/bin/sh
|
||
|
grep -e "^hb_" /usr/local/include/harfbuzz/hb*.h | grep "(" | sed -e 's/ .*$//' | awk -F: '{print $2}' | sort > status/full_api.txt
|