Changes between Version 8 and Version 9 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/GetDateStr
- Timestamp:
- 03/12/25 07:44:09 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/GetDateStr
v8 v9 2 2 Get the date 3 3 4 {{{ 4 {{{#!c++ 5 5 string GetDateStr(void); 6 6 … … 27 27 == Examples == 28 28 29 {{{ 29 {{{#!c++ 30 30 string strDate = GetDateStr(); 31 31 DisplayText(10, 10, strDate); 32 32 }}} 33 33 34 {{{ 34 {{{#!c++ 35 35 char szDate[20]; 36 36 GetDateStr(szDate); … … 38 38 }}} 39 39 40 {{{ 40 {{{#!c++ 41 41 datetime_struct dt; 42 42 dt.year = 2021; … … 48 48 }}} 49 49 50 {{{ 50 {{{#!c++ 51 51 datetime_struct dt; 52 52 dt.year = 2021;