~swag/armagetronad/0.2.9-sty+ct+ap-fork

« back to all changes in this revision

Viewing changes to src/defs.h

  • Committer: z-man
  • Date: 2007-02-01 12:30:06 UTC
  • Revision ID: svn-v3-list-QlpoOTFBWSZTWZvbKhsAAAdRgAAQABK6798QIABURMgAAaeoNT1TxT1DQbKaeobXKiyAmlWT7Y5MkdJOtXDtB7w7DOGFBHiOBxaUIu7HQyyQSvxdyRThQkJvbKhs:7d95bf1e-0414-0410-9756-b78462a59f44:armagetronad%2Fbranches%2F0.2.8%2Farmagetronad:7095
Added test for isspace() function.

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
inline REAL floorf( REAL x ) throw() { return REAL(floor( x )); }
101
101
#endif
102
102
 
103
 
#ifdef WIN32
104
 
// this function does not seem to exist in windows...
 
103
#ifndef HAVE_ISBLANK
 
104
// this function does not seem to exist in windows and solaris 2.8
105
105
inline bool isblank(int x){ return ((x == ' ') || (x == '\t')); }
106
106
#endif
107
107