/* ************************************************************************ * * str.h - * * Copyright (c) 1995 * * ETH Zuerich * Institut fuer Molekularbiologie und Biophysik * ETH-Hoenggerberg * CH-8093 Zuerich * * All Rights Reserved * * Date of last modification : 95/09/15 * Pathname of SCCS file : /export/home3/cb/garant-1.0/src/SCCS/s.str.h * SCCS identification : 1.2 * ************************************************************************ */ /**************************************************************************/ /* str.h */ /* */ /* classes and functions to deal with strings */ /**************************************************************************/ #ifndef _STR_H_ #define _STR_H_ extern void getToken(char *,char *,char *); /* gets the next token of a string */ /* returns token without delemiters*/ /* original string is shortened */ /* delemiters specified in last */ /* string. i.e */ /* getToken(string,token,' :'); */ extern void strip(char *, char*); /* remove delemiters */ #endif