C/C++ User's Journal STLSoft - ... Robust, Lightweight, Cross-platform, Template Software ... ATLSTL - where the Standard Template Library meets the Active Template Library COMSTL - where the Standard Template Library meets the Component Object Model
Synesis Software InetSTL - where the Standard Template Library meets the Internet UNIXSTL - Template Software for the UNIX Operating System WinSTL - where the Standard Template Library meets the Win32 API

recls/minmax.h File Reference


Detailed Description

[C, C++] min() / max() for the recls API.

#include <recls/recls.h>
#include <stddef.h>

Go to the source code of this file.

Namespaces

namespace  recls

Defines

#define recls_max(v1, v2)   (((v2) < (v1)) ? (v1) : (v2))
 Returns the larger of two values.
#define recls_min(v1, v2)   (((v1) < (v2)) ? (v1) : (v2))
 Returns the smaller of two values.

recls Library documentation © Synesis Software Pty Ltd, 2001-2006