You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
335 B
C

#pragma once
#include "json/layout.h"
char* filename_for_shortcode( const char* shortcode );
struct emoji
{
char* shortcode;
char* url;
};
struct emoji* emoji_from_shortcode( const char* shortcode );
void emoji_free( struct emoji* e );
extern struct json_object_field emoji_layout[];
extern struct json_field_type emoji_type;