Open-Smartwatch / open-smartwatch-os

The Open-Smartwatch Operating System.
https://open-smartwatch.github.io
GNU General Public License v3.0
998 stars 163 forks source link

HAL: refactoring slice-weekday #280

Closed RuffaloLavoisier closed 2 years ago

RuffaloLavoisier commented 2 years ago

Refactoring the code below used to abbreviate the date.

{
  char weekday3[4];
  weekday3[0] = wd[0];
  weekday3[1] = wd[1];
  weekday3[2] = wd[2];
  weekday3[3] = '\0';
}