mirror of
https://github.com/louisrubet/rpn
synced 2025-02-03 08:46:05 +01:00
20 lines
187 B
C
20 lines
187 B
C
|
void dec()
|
||
|
{
|
||
|
binary::s_mode = binary::dec;
|
||
|
}
|
||
|
|
||
|
void hex()
|
||
|
{
|
||
|
binary::s_mode = binary::hex;
|
||
|
}
|
||
|
|
||
|
void oct()
|
||
|
{
|
||
|
binary::s_mode = binary::oct;
|
||
|
}
|
||
|
|
||
|
void bin()
|
||
|
{
|
||
|
binary::s_mode = binary::bin;
|
||
|
}
|