mcalc

simple interactive program to perform matrix operations. (WIP)
Index Commits Files Refs README LICENSE
status.h (239B)
   1 #ifndef _STATUS_H
   2 #define _STATUS_H
   3 
   4 typedef enum {
   5     OK,
   6     ERROR_MATRIX_DIMENSION,
   7     ERROR_NO_USER_INPUT,
   8     ERROR_MAX_CMD_PROMPT,
   9     ERROR_ALLOCATING_MEMORY,
  10     ERROR_MAX_MAIN_PROMPT_REACHED,
  11     ERROR_NULL_POINTER
  12 } status_t;
  13 
  14 #endif