#!/bin/bash # # Create a file named identifiers containing identifiers from internal header # files, based on the --internal flag. # Outputs the line count of the file to stdout. # A very thin wrapper around list_internal_identifiers.py for backwards # compatibility. # Must be run from Mbed TLS root. # # Usage: list-identifiers.sh [ -i | --internal ] # # Copyright The Mbed TLS Contributors # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later set -eu if [ -d include/mbedtls ]; then :; else echo "$0: Must be run from Mbed TLS root" >&2 exit 1 fi INTERNAL="" until [ -z "${1-}" ] do case "$1" in -i|--internal) INTERNAL="1" ;; *) # print error echo "Unknown argument: '$1'" exit 1 ;; esac shift done if [ $INTERNAL ] then tests/scripts/list_internal_identifiers.py wc -l identifiers else cat <