blob: b797c2fb63f03732cf4b943d594644459f702595 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* Copyright 2023
*
* This file is part of WarpX.
*
* License: BSD-3-Clause-LBNL
*/
#ifndef ABLASTR_UTILS_TEXT_STREAMUTILS_H_
#define ABLASTR_UTILS_TEXT_STREAMUTILS_H_
#include <istream>
namespace ablastr::utils::text
{
/**
* \brief This function drops the rest of the current line of
* the input stream "is"
*
* @param[in,out] is the input stream
*/
void goto_next_line (std::istream& is);
}
#endif //ABLASTR_UTILS_TEXT_STREAMUTILS_H_
|