11 lines
215 B
C
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);
|