KallistiOS  2.0.0
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
limits.h
Go to the documentation of this file.
1 /* KallistiOS 2.0.0
2 
3  kos/limits.h
4  (c)2000-2001 Dan Potter
5 
6 */
7 
8 /** \file kos/limits.h
9  \brief Limits.
10 
11  This file contains definitions of limits of various things.
12 
13  \author Dan Potter
14 */
15 
16 #ifndef __KOS_LIMITS_H
17 #define __KOS_LIMITS_H
18 
19 #define MAX_FN_LEN 256 /**< \brief Max filename length */
20 #define PATH_MAX 4095 /**< \brief Max path length */
21 #define SYMLOOP_MAX 16 /**< \brief Max number of symlinks resolved */
22 
23 #endif /* __KOS_LIMITS_H */