emoji

emoji list in a C header
git clone https://noulin.net/git/emoji.git
Log | Files | Refs | README | LICENSE

README.md (794B)


      1 # Sheepy
      2 This is a sheepy package for [sheepy](https://spartatek.se/r/sheepy/file/README.md.html) and using [libsheepy](https://spartatek.se/r/libsheepy/file/README.md.html)
      3 
      4 # emoji
      5 
      6 This is a header having the data in [Unicode Emoji List v11](https://unicode.org/emoji/charts/full-emoji-list.html).
      7 
      8 The defines in the header have the pattern: __"EM_"__"CLDR Short Name" and the contents are C hexadecimal strings of the UTF8 code point for the emoji.
      9 
     10 # Usage
     11 
     12 Install with spm: `spm install emoji`
     13 
     14 Include emoji: `#include "shpPackages/emoji/emoji.h"`, then:
     15 
     16 ```c
     17 puts(EM_FACE_WITH_ROLLING_EYES " " EM_BEER_MUG " " EM__PIRATE_FLAG " " EM_ALIEN_MONSTER " " EM_BOMB);
     18 ```
     19 
     20 # Related
     21 
     22 The [emi package](https://noulin.net/emi/file/README.md.html) is the CLI command using the emoji library.