File: cmdlex.h

package info (click to toggle)
modemu 0.0.1-3
  • links: PTS
  • area: main
  • in suites: hamm, potato, slink
  • size: 200 kB
  • ctags: 263
  • sloc: ansic: 1,736; lex: 146; makefile: 73
file content (12 lines) | stat: -rw-r--r-- 176 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
typedef enum {
    CMDST_OK,
    CMDST_ERROR,
    CMDST_CONNECT,
    CMDST_NOCARRIER,
    CMDST_NOAT,
    CMDST_ATD,
    CMDST_ATO
} Cmdstat;

Cmdstat
cmdLex(const char *ptr);