Files

13 lines
232 B
C
Raw Permalink Normal View History

#ifndef LINE_ED_PROMPT_H_
#define LINE_ED_PROMPT_H_
#define PROMPT_MAIN 0
#define PROMPT_CONT 1
struct line_ed;
extern void show_prompt(struct line_ed *ed);
2024-12-13 17:20:45 +00:00
extern size_t prompt_length(struct line_ed *ed, int prompt_id);
#endif