10 lines
185 B
C++
10 lines
185 B
C++
#pragma once
|
|
#ifndef QUEUE_CTRL_H
|
|
#define QUEUE_CTRL_H
|
|
#include <string>
|
|
int queue_push(const std::string& str);
|
|
std::string queue_pop();
|
|
int get_queue_size();
|
|
|
|
#endif // !QUEUE_CTRL_H
|