#ifndef MULTIGRAPH_H
#define MULTIGRAPH_H

#include <wchar.h>
/* arch-tag: 1d1adb22-1282-4ad8-8c4c-fde6022fec40 */

struct mgraph {
    char *s;
    wchar_t c;
};

typedef struct mgraph mgraph_t;

int compare_mgraph_exact(const void *a, const void *b);
int compare_mgraph_substr(const void *a, const void *b);

extern const struct mgraph mgraphs[];
extern const int NUM_MGRAPHS;
//#define NUM_MGRAPHS (sizeof(mgraphs)/sizeof(mgraph_t))

#endif

