Files
2026-06-01 12:46:52 +02:00

10 lines
221 B
C++

#pragma once
#include <string>
namespace KFileNameCipher
{
bool IsEncodedName( const std::string & strFileName );
void EncodeFileName( std::string & strFileName );
void DecodeFileName( std::string & strFileName );
};