// See http://bjoern.hoehrmann.de/utf-8/decoder/dfa/ for details. // The remapped transition table is justified at // https://docs.google.com/spreadsheets/d/1AZcQwuEL93HmNCljJWUwFMGqf7JAQ0puawZaUgP0E14 #include <stdint.h> #ifndef __UTF8_DFA_DECODER_H #define __UTF8_DFA_DECODER_H struct Utf8DfaDecoder { … }; #endif /* __UTF8_DFA_DECODER_H */