mirror of
https://github.com/fadden/ciderpress.git
synced 2024-11-23 11:33:58 +00:00
20 lines
403 B
C
20 lines
403 B
C
/*
|
|
* CiderPress
|
|
* Copyright (C) 2007 by faddenSoft, LLC. All Rights Reserved.
|
|
* See the file LICENSE for distribution terms.
|
|
*/
|
|
/*
|
|
* Standard stuff.
|
|
*/
|
|
#ifndef __FADDEN_STD__
|
|
#define __FADDEN_STD__
|
|
|
|
#define NELEM(x) ((int) (sizeof(x) / sizeof(x[0])))
|
|
|
|
#define nil NULL
|
|
|
|
// Windows equivalents
|
|
#define strcasecmp stricmp
|
|
#define strncasecmp strnicmp
|
|
|
|
#endif /*__FADDEN_STD__*/ |