Created
May 2, 2022 10:26
-
-
Save tuanpmt/ec7e081c797114e397a36ccb386724f6 to your computer and use it in GitHub Desktop.
USE PRONOUNCEABLE NAMES
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef struct { | |
date_time_t playhhmmdd; /* BAD */ | |
} mp3_audio_data_t; | |
typedef struct { | |
date_time_t play_time; /* GOOD */ | |
} mp3_audio_data_t; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment