Skip to content
Snippets Groups Projects
Commit e57c20ba authored by T.Wadi's avatar T.Wadi
Browse files

sTime stuct added to datastructure

parent 1ba9afcd
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,12 @@ typedef struct sDate{
int year ;
} sDate;
typedef struct sTime{
int seconds;
int minutes;
int hours;
} sTime;
/************************************************************************************************/
/***********************************functions declaration****************************************/
/************************************************************************************************/
......
......@@ -6,7 +6,7 @@
int main()
{
PrintLogo();
printLogo();
delay(2);
clearScreen();
......
......@@ -48,7 +48,7 @@ int askYesOrNo(char *Question)
}
/**********************************************************/
/**********************************************************/
void PrintLogo ()
void printLogo ()
{
FILE *titel = fopen("Logo.txt","r");
char output[150];
......
......@@ -4,7 +4,7 @@ void clearScreen();
void clearBuffer();
void waitForEnter();
int askYesOrNo(char*);
void PrintLogo ();
void printLogo ();
void delay(unsigned int number_of_seconds);
#endif // TOOLS_H_INCLUDED
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment