aboutsummaryrefslogtreecommitdiff
path: root/src/locale.h
blob: 2662ceee7bccda32fa91253cd4766d7b0bed41a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef SKHD_LOCALE_H
#define SKHD_LOCALE_H

#include <stdbool.h>
#include <stdint.h>

uint32_t keycode_from_char(char key);
uint32_t keycode_from_literal(char *key, unsigned length);
bool same_string(char *text, unsigned length, const char *match);

#endif