source: cpp/gdk/sstringutils.h @ 5

Last change on this file since 5 was 5, checked in by sz, 15 years ago

added the GDK (Genotype Development Kit)

File size: 927 bytes
Line 
1// This file is a part of Framsticks GDK library.
2// Copyright (C) 2002-2006  Szymon Ulatowski.  See LICENSE.txt for details.
3// Refer to http://www.frams.alife.pl/ 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
27#endif
28
Note: See TracBrowser for help on using the repository browser.