mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-12 04:26:41 +08:00
16 lines
285 B
C
16 lines
285 B
C
|
#ifndef EMOJIS_ALT_H__
|
||
|
#define EMOJIS_ALT_H__
|
||
|
|
||
|
typedef struct emoji_alt_s {
|
||
|
const char *alias;
|
||
|
const char *alttext;
|
||
|
} emoji_alt_t;
|
||
|
// emoji_alt_t array are expected to be NULL terminated
|
||
|
|
||
|
static emoji_alt_t EmojiAltTable[] = {
|
||
|
{":wink:", ";)"},
|
||
|
{NULL, NULL}
|
||
|
};
|
||
|
|
||
|
#endif
|