source: cpp/gdk/sstringutils.h @ 104

Last change on this file since 104 was 66, checked in by Maciej Komosinski, 13 years ago

set 'eol-style' to 'native'

  • Property svn:eol-style set to native
File size: 995 bytes
Line 
1// This file is a part of the Framsticks GDK library.
2// Copyright (C) 2002-2011  Szymon Ulatowski.  See LICENSE.txt for details.
3// Refer to http://www.framsticks.com/ for further information.
4
5#ifndef _SSTRINGUTILS_H_
6#define _SSTRINGUTILS_H_
7
8#include "sstring.h"
9#include "virtfile.h"
10
11/// return: 1=ok 0=error
12int loadSString(const char* filename,SString& s,const char* framsgmodule=0,const char* error=0);
13void loadSString(VirtFILE *f,SString& s);
14
15int quoteTilde(SString &target);
16int unquoteTilde(SString &target);
17
18bool strContainsOneOf(const char* str,const char* chars);
19bool sstringQuote(SString& target);
20const char* skipQuoteString(const char* txt, const char* limit);
21int sstringUnquote(SString &target);
22
23int strFindField(const SString& txt,const SString& name,int &end);
24SString strGetField(const SString& txt,const SString& name);
25void strSetField(SString& txt,const SString& name,const SString& value);
26
27SString trim(SString& s); //remove leading/trailing whitespace
28
29#endif
30
Note: See TracBrowser for help on using the repository browser.