blob: 606e9f15ff64a99383dc55fba189f65809be07ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* tools.h: 'EnigmaNG' skin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef __SKINENIGMA_TOOLS_H
#define __SKINENIGMA_TOOLS_H
#include "common.h"
std::string parseaux(const char *str);
bool ischaracters(const char *aux, const char *mask);
#endif // __SKINENIGMA_TOOLS_H
// vim:et:sw=2:ts=2:
|