mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
11 lines
180 B
C++
11 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
|