mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
568b27baeb
svn path=/trunk/; revision=13063
14 lines
211 B
C++
14 lines
211 B
C++
// trim.h
|
|
// This file is (C) 2004 Royce Mitchell III
|
|
// and released under the BSD & LGPL licenses
|
|
|
|
#ifndef TRIM_H
|
|
#define TRIM_H
|
|
|
|
#include <string>
|
|
|
|
std::string trim ( const std::string& s );
|
|
|
|
#endif//TRIM_H
|
|
|