initial commit
This commit is contained in:
commit
1c606d0274
36 changed files with 9908 additions and 0 deletions
18
include/parser.h
Normal file
18
include/parser.h
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
/* SPDX-License-Identifier: GPL-3.0-only */
|
||||
/*
|
||||
* Parser for Unfettered Keyboard keyboard layouts in XML.
|
||||
*
|
||||
* Copyright (c) 2024, Richard Acayan. All rights reserved.
|
||||
*/
|
||||
|
||||
#ifndef UFKBD_PARSER_H
|
||||
#define UFKBD_PARSER_H
|
||||
|
||||
struct ufkbd_keymap;
|
||||
struct ufkbd_layout;
|
||||
|
||||
int ufkbd_parser_parse(int dir, const char *fname,
|
||||
struct ufkbd_keymap *keymap,
|
||||
struct ufkbd_layout *layout);
|
||||
|
||||
#endif /* UFKBD_PARSER_H */
|
||||
Loading…
Add table
Add a link
Reference in a new issue