mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-03-22 01:34:13 -05:00
11 lines
252 B
C++
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);
|
|
}
|