cmdline: rename return values of vt100
[libcmdline.git] / src / lib / cmdline_vt100.h
index 4d64bfc..824bed3 100644 (file)
@@ -133,10 +133,12 @@ struct cmdline_vt100 {
  */
 void vt100_init(struct cmdline_vt100 *vt);
 
+#define VT100_STD_CHAR     -1
+#define VT100_NOT_COMPLETE -2
 /**
  * Input a new character.
- * Return -1 if the character is not part of a control sequence
- * Return -2 if c is not the last char of a control sequence
+ * Return VT100_STD_CHAR if the character is not part of a control sequence
+ * Return VT100_NOT_COMPLETE if c is not the last char of a control sequence
  * Else return the index in vt100_commands[]
  */
 int vt100_parser(struct cmdline_vt100 *vt, char c);