Added Spanish translations.
[kdbg.git] / kdbg / parsevar.h
blob39eb6248d30b013dc1acafafd49a46b12ef665ca
1 // $Id$
3 // Copyright by Johannes Sixt
4 // This file is under GPL, the GNU General Public Licence
6 class VarTree;
8 // parse string s for a variable tree
9 // if successful, return a tree (caller must delete)
10 extern VarTree* parseVar(const char*& s);
12 void skipNestedWithString(const char*& s, char opening, char closing);
13 void skipNested(const char*& s, char opening, char closing);