finsh_error.h 239 B

1234567891011121314
  1. #ifndef __FINSH_ERROR_H__
  2. #define __FINSH_ERROR_H__
  3. #include <finsh.h>
  4. int finsh_error_init(void);
  5. /* get error number */
  6. u_char finsh_errno(void);
  7. int finsh_error_set(u_char type);
  8. const char* finsh_error_string(u_char type);
  9. #endif