Subversion Repositories SvarDOS

Rev

Rev 269 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 269 Rev 614
1
/*
1
/*
2
 * trims any space, tab, cr or lf
2
 * trims any space, tab, cr or lf
3
 * Copyright (C) 2012-2021 Mateusz Viste
3
 * Copyright (C) 2012-2021 Mateusz Viste
4
 */
4
 */
5
 
5
 
6
#ifndef trim_sentinel
6
#ifndef trim_sentinel
7
#define trim_sentinel
7
#define trim_sentinel
8
 
8
 
9
void trim(char *str);
9
void trim(char *str);
10
 
10
 
11
#endif
11
#endif
12
 
12