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