mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-04 04:32:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			352 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			352 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
set -eu
 | 
						|
 | 
						|
if [ -d include/mbedtls ]; then :; else
 | 
						|
    echo "$0: must be run from root" >&2
 | 
						|
    exit 1
 | 
						|
fi
 | 
						|
 | 
						|
HEADERS=$( ls include/mbedtls/*.h | egrep -v 'compat-1\.3\.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
 |