File: message.h

package info (click to toggle)
namazu2 2.0.21-22
  • links: PTS
  • area: main
  • in suites: buster
  • size: 7,032 kB
  • sloc: ansic: 14,161; perl: 10,789; sh: 9,355; lisp: 1,147; makefile: 914
file content (12 lines) | stat: -rw-r--r-- 198 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _MESSAGE_H
#define _MESSAGE_H

#define MSG_MIME_HEADER  "Content-type: "

#if defined(_WIN32) || defined(__EMX__)
#define CRLF "\n"
#else
#define CRLF "\r\n"
#endif

#endif /* _MESSAGE_H */