mirror of
https://github.com/reactos/reactos.git
synced 2025-01-10 08:10:18 +00:00
10 lines
180 B
C++
10 lines
180 B
C++
// strip_comments.h
|
|
|
|
#ifndef STRIP_COMMENTS_H
|
|
#define STRIP_COMMENTS_H
|
|
|
|
#include <string>
|
|
|
|
void strip_comments ( std::string& s, bool strip_lf = false );
|
|
|
|
#endif//STRIP_COMMENTS_H
|