mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 10:28:35 +00:00
12 lines
228 B
Bash
12 lines
228 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set =eu
|
||
|
|
||
|
HEADERS=$( ls include/mbedtls/*.h )
|
||
|
|
||
|
sed -n -e 's/.*#define \([a-zA-Z0-9_]*\).*/\1/p' $HEADERS \
|
||
|
| egrep -v '^(asm|inline|EMIT|_CRT_SECURE_NO_DEPRECATE)$|^MULADDC_' \
|
||
|
| sort -u > macros
|
||
|
|
||
|
wc -l macros
|