repo.or.cz
/
RRG-proxmark3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix little endian vs big endian in the macros... again... but this time correct
[RRG-proxmark3.git]
/
client
/
src
/
emojis_alt.h
blob
9d11f73b9d43a21466e01e83a6355714b2f1e744
1
#ifndef EMOJIS_ALT_H__
2
#define EMOJIS_ALT_H__
3
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
9
10
static
emoji_alt_t EmojiAltTable
[] = {
11
{
":wink:"
,
";)"
},
12
{
NULL
,
NULL
}
13
};
14
15
#endif