Silence various sparse warnings
[elinks/images.git] / Unicode / gen-ent
blob37a811781e69a4605c300a1bbc4d3d4d506a51ed
1 #!/bin/sh
3 echo
4 echo Generating entity table.
6 cat entities.lnx | grep '^[ ]*{"' | sort >tmp
7 N=`cat tmp | wc -l`
8 echo '/* Automatically generated by gen-ent */'
9 echo
10 echo 'struct entity { char *s; unicode_val_T c; } entities ['`expr $N + 1`'] = {'
11 cat tmp
12 echo ' {NULL, 0}'
13 echo '};'
14 echo
15 echo '#define N_ENTITIES' $N
16 ) > ../src/intl/entity.inc
17 rm -f tmp
18 echo Done.
19 echo