Subversion Repositories SvarDOS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

/*
 * 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