Subversion Repositories SvarDOS

Rev

Rev 256 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
219 mateuszvis 1
/*
2
 * This file is part of FDNPKG
3
 * Copyright (C) 2012-2016 Mateusz Viste
4
 *
5
 * trim spaces, tabs, cr's and lf's from both left and right ends of a string
6
 */
7
 
8
#ifndef trim_sentinel
9
#define trim_sentinel
10
 
11
void rtrim(char *str);
12
void trim(char *str);
13
 
14
#endif