password_manager/include/environment.hpp
Nikola Petrov ae7c8571b4 WIP editor
Can only read the password no safe for edit
2024-07-22 11:52:52 +02:00

16 lines
350 B
C++

#ifndef WIN_HPP
#define WIN_HPP
#include <optional>
#include <string>
bool put_data_on_clipboard(const char *text);
std::string get_user_password();
std::optional<std::string> get_save_path();
int getWindowSize(int *rows, int *cols);
int enableRawMode(void);
int writeTerm(const char *buf, int length);
int readTerm(char *buf, int length);
#endif