mirror of
https://github.com/openappsec/openappsec.git
synced 2025-06-28 16:41:02 +03:00
14 lines
159 B
C++
14 lines
159 B
C++
#ifndef __OUTPUT_H__
|
|
#define __OUTPUT_H__
|
|
|
|
#include <string>
|
|
|
|
namespace infra
|
|
{
|
|
|
|
std::string printChar(char ch);
|
|
|
|
} // namespace infra
|
|
|
|
#endif // __OUTPUT_H__
|