passwdgen/include/passwdgen.h
Gregory Gauthier 55475c4f6f
All checks were successful
CMake / build (push) Successful in 47s
refactor(structure): reorganize project with src/ and include/ directories
Moved source files to src/ and headers to include/.
Updated CMakeLists.txt and include paths accordingly.
Added and updated test files in tests/.
Included generated CMake cache and compiler ID files.
2026-03-06 16:15:21 +00:00

11 lines
215 B
C++

// passwdgen.h
#pragma once
#include <string>
// Core password generation functionality
std::string random_string(std::size_t length, bool punc);
// Help message display
void show_usage(const std::string& name);