mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
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
|
||
|
|