fixing bugs, changing some code from char arrays to c++ std::string

This commit is contained in:
jakani24
2024-03-13 19:10:31 +01:00
parent 717c7956f5
commit 41e0889a6e
38 changed files with 1242 additions and 1038 deletions

View File

@@ -1,9 +1,9 @@
#pragma once
#ifndef QUEUE_CTRL_H
#define QUEUE_CTRL_H
int queue_push(char* str);
int queue_pop(char* str);
#include <string>
int queue_push(const std::string& str);
std::string queue_pop();
int get_queue_size();
#endif // !QUEUE_CTRL_H