From 5dbf1809c6e3e905b94b8764e99491e608122261 Mon Sep 17 00:00:00 2001 From: Rémi Verschelde Date: Sun, 5 Mar 2017 16:44:50 +0100 Subject: A Whole New World (clang-format edition) I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code --- drivers/unix/dir_access_unix.h | 34 +++++++++++++--------------------- 1 file changed, 13 insertions(+), 21 deletions(-) (limited to 'drivers/unix/dir_access_unix.h') diff --git a/drivers/unix/dir_access_unix.h b/drivers/unix/dir_access_unix.h index f075c4826..0ec0e551d 100644 --- a/drivers/unix/dir_access_unix.h +++ b/drivers/unix/dir_access_unix.h @@ -31,65 +31,57 @@ #if defined(UNIX_ENABLED) || defined(LIBC_FILEIO_ENABLED) -#include +#include #include +#include #include -#include #include "os/dir_access.h" - /** @author Juan Linietsky */ class DirAccessUnix : public DirAccess { - + DIR *dir_stream; - + static DirAccess *create_fs(); - + String current_dir; bool _cisdir; bool _cishidden; -protected: - virtual String fix_unicode_name(const char* p_name) const { return String::utf8(p_name); } +protected: + virtual String fix_unicode_name(const char *p_name) const { return String::utf8(p_name); } public: - virtual Error list_dir_begin(); ///< This starts dir listing virtual String get_next(); virtual bool current_is_dir() const; virtual bool current_is_hidden() const; - - virtual void list_dir_end(); ///< - + + virtual void list_dir_end(); ///< + virtual int get_drive_count(); virtual String get_drive(int p_drive); - + virtual Error change_dir(String p_dir); ///< can be relative or absolute, return false on success virtual String get_current_dir(); ///< return current dir location virtual Error make_dir(String p_dir); - + virtual bool file_exists(String p_file); virtual bool dir_exists(String p_dir); virtual uint64_t get_modified_time(String p_file); - - virtual Error rename(String p_from, String p_to); virtual Error remove(String p_name); virtual size_t get_space_left(); - - + DirAccessUnix(); ~DirAccessUnix(); - }; - - #endif //UNIX ENABLED #endif -- cgit v1.2.3-70-g09d2