passwdgen/passwdgen.h
Greg Gauthier ed0b6ed110
All checks were successful
CMake / build (push) Successful in 1m1s
refactor, and add proper tests
2025-09-05 12:43:46 +01: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);