fix little endian vs big endian in the macros... again... but this time correct
[RRG-proxmark3.git] / client / src / emojis_alt.h
blob9d11f73b9d43a21466e01e83a6355714b2f1e744
1 #ifndef EMOJIS_ALT_H__
2 #define EMOJIS_ALT_H__
4 typedef struct emoji_alt_s {
5 const char *alias;
6 const char *alttext;
7 } emoji_alt_t;
8 // emoji_alt_t array are expected to be NULL terminated
10 static emoji_alt_t EmojiAltTable[] = {
11 {":wink:", ";)"},
12 {NULL, NULL}
15 #endif