blob: 3c84adba63a239d67bfdd43c6d91d232ea9e1b31 [file] [log] [blame] [raw]
Manuel Pégourié-Gonnard3385cf42015-04-02 17:59:30 +01001#!/bin/sh
2
Manuel Pégourié-Gonnardd1ddd292015-04-09 10:15:10 +02003set -eu
4
5if [ -d include/mbedtls ]; then :; else
6 echo "$0: must be run from root" >&2
7 exit 1
8fi
Manuel Pégourié-Gonnard3385cf42015-04-02 17:59:30 +01009
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020010HEADERS=$( ls include/mbedtls/*.h | egrep -v 'compat-1\.3\.h' )
Manuel Pégourié-Gonnard3385cf42015-04-02 17:59:30 +010011
12sed -n -e 's/.*#define \([a-zA-Z0-9_]*\).*/\1/p' $HEADERS \
13 | egrep -v '^(asm|inline|EMIT|_CRT_SECURE_NO_DEPRECATE)$|^MULADDC_' \
14 | sort -u > macros
15
16wc -l macros