Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. typedef struct EmojiDef {
  2. string face;
  3. string value;
  4. } EmojiDef,*pEmojiDef;
  5.  
  6. static EmojiDef EmojiTab[]=
  7. {
  8. {"💰", "xn--ss8h"} // etc... 💰 would be the actual unicode value, whatever it is. xn--ss8h would be your formatting.
  9. };
  10.  
  11. for (int i = 0; i < emoji; i++)
  12. {
  13. if (checkPassword(emoji[i] + dict[i]) { writeFound(emoji[i] + dict[i]); } // check either side, etc.
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement