Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
krmaet
/
Lennubroneerimis_tarkvara
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Pipelines
Members
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
afdf6a1e
authored
Mar 19, 2023
by
krmaet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete broneering.h
parent
60ef1396
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
38 deletions
broneering.h
broneering.h
deleted
100644 → 0
View file @
60ef1396
#ifndef BRONEERING_H
#define BRONEERING_H
#define NAME_MAX 40
#define DOB_MAX 20
#define STR_MAX 128
#define SEAT_MAX 5
#define SEATS 72
#define DOC_MAX 10
#define ROWS 18
#define COLS 4
typedef
struct
{
char
documentNum
[
DOC_MAX
];
char
fName
[
NAME_MAX
];
char
lName
[
NAME_MAX
];
char
dateOfBirth
[
DOB_MAX
];
char
email
[
STR_MAX
];
char
residency
[
STR_MAX
];
bool
checkedIn
;
char
seat
[
SEAT_MAX
];
int
luggageClass
;
int
flight_id
;
}
users
;
MYSQL
*
connectToMySQLServer
();
void
finish_with_error
(
MYSQL
*
con
);
int
ShowDestinations
(
MYSQL
*
con
);
void
PrintRes
(
MYSQL_RES
*
result
);
int
GetRand
(
int
min
,
int
max
);
void
insertPersonIntoTable
(
MYSQL
*
con
,
users
data
);
void
FillSeatmap
(
int
seats
[
ROWS
][
COLS
],
int
rows
,
int
cols
,
MYSQL
*
con
,
int
flightId
);
void
PrintSeats
(
int
data
[
ROWS
][
COLS
],
int
rows
,
int
cols
);
#endif
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment