-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patht_delete.c
34 lines (28 loc) · 888 Bytes
/
t_delete.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*t_delete.c | RLotto | gcc | v0.9.0-beta
* Console program for storing and evaluating lottery ticket results.
* ----------------------------------------------------------------------------
*
* Objective: Delete tickets from repository
*
* Author: Reinhard Rozumek
* Email: [email protected]
* Created: 10/08/17
* Last mod: 10/08/17
*
* ----------------------------------------------------------------------------
* This file is part of RLotto. */
// HEADER SECTION
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include <dirent.h>
#include "rlotto.h"
/* DELETE TICKET ------------------------------------------------------------*/
/* Delete stored ticket in repository.
*/
int deleteTicket(void) {
printf("\n\nDelete existing lottery ticket.\n");
return 0;
}