blob: 7c8ff130b5a25ba6aa7698c15cacdb505913c169 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* tools.h: The 'EnigmaNG' VDR skin
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef __SKINENIGMA_TOOLS_H
#define __SKINENIGMA_TOOLS_H
#include <vdr/tools.h>
const char *parseaux(const char *str);
bool ischaracters(const char *aux, const char *mask);
#endif // __SKINENIGMA_TOOLS_H
|