JKSV/include/cmdargs.hpp
2025-09-30 15:51:54 -04:00

11 lines
252 B
C++

#pragma once
namespace cmdargs
{
/// @brief Stores the pointers passed to main for later usage without making JKSV a mess.
void store(int argc, const char *argv[]);
/// @brief Gets the argument at index.
const char *get(int index);
}