passwdgen/passwdgen.h

11 lines
215 B
C
Raw Permalink Normal View History

2025-09-05 11:43:46 +00:00
// 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);