blob: 4acdbcfbb35597c9166c487735ee2ff9d90d3775 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <stdio.h>
#define FILENAME_MAX (255)
/** maximum filename length **/
/***
is size of the longest array of TYPE(char) that the implementation guarantees
can be used as a file name.
***/
/*
STDC(1)
*/
|