123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- PJ_BEGIN_DECL
- typedef struct pj_file_stat
- {
- pj_off_t size;
- pj_time_val atime;
- pj_time_val mtime;
- pj_time_val ctime;
- } pj_file_stat;
- PJ_DECL(pj_bool_t) pj_file_exists(const char *filename);
- PJ_DECL(pj_off_t) pj_file_size(const char *filename);
- PJ_DECL(pj_status_t) pj_file_delete(const char *filename);
- PJ_DECL(pj_status_t) pj_file_move( const char *oldname,
- const char *newname);
- PJ_DECL(pj_status_t) pj_file_getstat(const char *filename, pj_file_stat *stat);
- PJ_END_DECL
|