mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 09:39:10 -04:00
Apply the pre-commit hook whitespace fixes to all files in the repo. (Line endings, blank lines at end of file, trailing whitespace)
9 lines
124 B
C
9 lines
124 B
C
#include <stdio.h>
|
|
|
|
|
|
void blink_dummy_func(void)
|
|
{
|
|
static int i;
|
|
printf("blink_dummy_func: Counter = %d\n", i++);
|
|
}
|