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