Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenlib/BLI_fileops.h
| Show First 20 Lines • Show All 93 Lines • ▼ Show 20 Lines | |||||
| void BLI_filelist_entry_size_to_string(const struct stat *st, | void BLI_filelist_entry_size_to_string(const struct stat *st, | ||||
| const uint64_t sz, | const uint64_t sz, | ||||
| const bool compact, | const bool compact, | ||||
| char r_size[]); | char r_size[]); | ||||
| void BLI_filelist_entry_mode_to_string( | void BLI_filelist_entry_mode_to_string( | ||||
| const struct stat *st, const bool compact, char r_mode1[], char r_mode2[], char r_mode3[]); | const struct stat *st, const bool compact, char r_mode1[], char r_mode2[], char r_mode3[]); | ||||
| void BLI_filelist_entry_owner_to_string(const struct stat *st, const bool compact, char r_owner[]); | void BLI_filelist_entry_owner_to_string(const struct stat *st, const bool compact, char r_owner[]); | ||||
| void BLI_filelist_entry_datetime_to_string( | void BLI_filelist_entry_datetime_to_string(const struct stat *st, | ||||
| const struct stat *st, const int64_t ts, const bool compact, char r_time[], char r_date[]); | const int64_t ts, | ||||
| const bool compact, | |||||
| char r_time[], | |||||
| char r_date[], | |||||
| bool *r_is_today, | |||||
| bool *r_is_yesterday); | |||||
| /* Files */ | /* Files */ | ||||
| FILE *BLI_fopen(const char *filename, const char *mode) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | FILE *BLI_fopen(const char *filename, const char *mode) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | ||||
| void *BLI_gzopen(const char *filename, const char *mode) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | void *BLI_gzopen(const char *filename, const char *mode) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | ||||
| int BLI_open(const char *filename, int oflag, int pmode) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | int BLI_open(const char *filename, int oflag, int pmode) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | ||||
| int BLI_access(const char *filename, int mode) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | int BLI_access(const char *filename, int mode) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL(); | ||||
| Show All 35 Lines | |||||