1 #ifndef OverwriteLine_DEFINED 2 #define OverwriteLine_DEFINED 3 4 // Print this string to reset and clear your current terminal line. 5 static const char* kSkOverwriteLine = 6 #ifdef SK_BUILD_FOR_WIN 7 "\r \r" 8 #elif defined(SK_BUILD_FOR_IOS) 9 "\r" 10 #else 11 "\r\033[K" 12 #endif 13 ; 14 15 #endif//OverwriteLine_DEFINED 16