add missing include

This commit is contained in:
Enno Rehling 2019-08-01 23:11:52 +02:00
parent bcdddd5099
commit a2a7bc5f61
2 changed files with 10 additions and 1 deletions

9
s/convert.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/sh
while [ ! -z $1 ] ; do
tmpfile=$(mktemp eressea.XXX)
iconv -f latin1 -t utf-8 < $1 | \
perl -pe 's/ß/ss/; s/ä/ae/; s/ü/ue/; s/ö/oe/;' \
> $tmpfile && \mv $tmpfile $1
file $1
shift 1
done

View File

@ -19,8 +19,8 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#ifndef _UNICODE_H #ifndef _UNICODE_H
#define _UNICODE_H #define _UNICODE_H
#include <stdint.h>
#include <stddef.h> #include <stddef.h>
#include <wchar.h>
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {