11 lines
157 B
C
11 lines
157 B
C
/**
|
|
* @file src/main.h
|
|
* @brief Main header file for the Sunshine application.
|
|
*/
|
|
|
|
// macros
|
|
#pragma once
|
|
|
|
// functions
|
|
int
|
|
main(int argc, char *argv[]);
|