Mercurial > noffle
view src/common.h @ 500:614a3177b15c noffle tip
Add mail-from option.
Some modern mail systems will try and ensure the sender email is a legitimate
address. Which will fail if there isn't such an address.
author | Jim Hague <jim.hague@acm.org> |
---|---|
date | Wed, 14 Aug 2013 12:04:39 +0100 |
parents | 21300895412f |
children |
line wrap: on
line source
/* common.h Common declarations. $Id: common.h 517 2003-04-03 17:21:24Z bears $ */ #ifndef COMMON_H #define COMMON_H #if HAVE_CONFIG_H #include <config.h> #endif #include <stdio.h> #include <stdlib.h> #include <string.h> #define FALSE 0 #define TRUE !0 #define MAXCHAR 2048 #define MAXCHAR_STR "2048" /* limited sscanf() format string: */ #define MAXCHAR_FMT "%2048s" #ifdef DEBUG #include <assert.h> #define ASSERT( x ) \ if ( ! ( x ) ) \ Log_err( "ASSERTION FAILED: %s line %i", __FILE__, __LINE__ ); \ assert( x ) #else #define ASSERT( x ) #endif typedef int Bool; typedef char Str[ MAXCHAR ]; #endif