Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 218 → Rev 219

/pkginst/rtrim.h
0,0 → 1,14
/*
* This file is part of FDNPKG
* Copyright (C) 2012-2016 Mateusz Viste
*
* trim spaces, tabs, cr's and lf's from both left and right ends of a string
*/
 
#ifndef trim_sentinel
#define trim_sentinel
 
void rtrim(char *str);
void trim(char *str);
 
#endif