Subversion Repositories SvarDOS

Rev

Rev 219 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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