6 lines
118 B
C++
6 lines
118 B
C++
#pragma once
|
|
#include <string>
|
|
#ifndef PRINT_THIS_H
|
|
#define PRINT_THIS_H
|
|
void print_this(const std::string& s);
|
|
#endif |