15 lines
244 B
C
15 lines
244 B
C
|
/**
|
||
|
* @file Prompt.h
|
||
|
* @author apio (cloudapio.eu)
|
||
|
* @brief Displays the shell prompt.
|
||
|
*
|
||
|
* @copyright Copyright (c) 2024, the Luna authors.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
#include <luna/Result.h>
|
||
|
|
||
|
void setup_prompt();
|
||
|
Result<void> display_prompt();
|