home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fs.zip / octave / kpathsea / c-namemx.h < prev    next >
C/C++ Source or Header  |  2000-01-15  |  1KB  |  37 lines

  1. /* c-namemx.h: define NAME_MAX, the maximum length of a single
  2.    component in a filename.  No such limit may exist, or may vary
  3.    depending on the filesystem.
  4.  
  5. Copyright (C) 1992, 93 Free Software Foundation, Inc.
  6.  
  7. This library is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU Library General Public
  9. License as published by the Free Software Foundation; either
  10. version 2 of the License, or (at your option) any later version.
  11.  
  12. This library is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. Library General Public License for more details.
  16.  
  17. You should have received a copy of the GNU Library General Public
  18. License along with this library; if not, write to the Free Software
  19. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  20.  
  21. #ifndef KPATHSEA_C_NAME_MX_H
  22. #define KPATHSEA_C_NAME_MX_H
  23.  
  24. #include <kpathsea/c-limits.h>
  25.  
  26. /* Most likely the system will truncate filenames if it is not POSIX,
  27.    and so we can use the BSD value here.  */
  28. #ifndef _POSIX_NAME_MAX
  29. #define _POSIX_NAME_MAX 255
  30. #endif
  31.  
  32. #ifndef NAME_MAX
  33. #define NAME_MAX _POSIX_NAME_MAX
  34. #endif
  35.  
  36. #endif /* not KPATHSEA_C_NAME_MX_H */
  37.