File: constants.h

package info (click to toggle)
mailfront 0.98-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 648 kB
  • ctags: 495
  • sloc: ansic: 3,033; sh: 1,487; makefile: 78
file content (16 lines) | stat: -rw-r--r-- 298 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef MAIL_FRONT__CONSTANTS__H__
#define MAIL_FRONT__CONSTANTS__H__

#define AT '@'
#define CR ((char)13)
#define LF ((char)10)
#define SPACE ((char)32)
#define TAB ((char)9)
#define COLON ':'
#define LBRACE '<'
#define RBRACE '>'
#define PERIOD '.'
#define ESCAPE '\\'
#define QUOTE '"'

#endif