diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2017-02-18 23:15:32 +0100 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2017-02-18 23:15:32 +0100 |
commit | 345db0ecf42ec9866a562572b8a9222e85a6c4ed (patch) | |
tree | f308314326249ecedfe5d6ef7646fd074033a276 /encoder.h | |
parent | 8535e19736aa91f274fd5bec14d3988d67a03897 (diff) | |
download | sherlock.lv2-345db0ecf42ec9866a562572b8a9222e85a6c4ed.tar.xz |
nk: prototype ttl lexer.
Diffstat (limited to 'encoder.h')
-rw-r--r-- | encoder.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/encoder.h b/encoder.h new file mode 100644 index 0000000..9d376c6 --- /dev/null +++ b/encoder.h @@ -0,0 +1,26 @@ +/* + * Copyright (c) 2015-2016 Hanspeter Portner (dev@open-music-kontrollers.ch) + * + * This is free software: you can redistribute it and/or modify + * it under the terms of the Artistic License 2.0 as published by + * The Perl Foundation. + * + * This source is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * Artistic License 2.0 for more details. + * + * You should have received a copy of the Artistic License 2.0 + * along the source as a COPYING file. If not, obtain it from + * http://www.perlfoundation.org/artistic_license_2_0. + */ + +#ifndef ENCODER_H +#define ENCODER_H + +#include "nk_pugl/nk_pugl.h" + +struct nk_token * +ttl_lex(void *data, const char *utf8, int len); + +#endif |