mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
604 B
C
26 lines
604 B
C
4 years ago
|
/**
|
||
4 years ago
|
*
|
||
4 years ago
|
* \section COPYRIGHT
|
||
4 years ago
|
*
|
||
4 years ago
|
* Copyright 2013-2021 Software Radio Systems Limited
|
||
4 years ago
|
*
|
||
4 years ago
|
* By using this file, you agree to the terms and conditions set
|
||
|
* forth in the LICENSE file which can be found at the top level of
|
||
|
* the distribution.
|
||
4 years ago
|
*
|
||
|
*/
|
||
|
|
||
4 years ago
|
#ifndef SRSRAN_STANDARD_STREAMS_H
|
||
|
#define SRSRAN_STANDARD_STREAMS_H
|
||
4 years ago
|
|
||
4 years ago
|
namespace srsran {
|
||
4 years ago
|
|
||
4 years ago
|
/// Writes the formatted string to the standard output stream.
|
||
4 years ago
|
void console(const char* str, ...);
|
||
4 years ago
|
|
||
4 years ago
|
/// Writes the formatted string to the standard error stream.
|
||
4 years ago
|
void console_stderr(const char* str, ...);
|
||
4 years ago
|
|
||
4 years ago
|
} // namespace srsran
|
||
4 years ago
|
|
||
4 years ago
|
#endif // SRSRAN_STANDARD_STREAMS_H
|