14 lines
170 B
C
14 lines
170 B
C
#include "stdio.h"
|
|
#include "stdlib.h"
|
|
#include "string.h"
|
|
|
|
struct Bus {
|
|
int BusID;
|
|
int RouteID;
|
|
time_t schedule;
|
|
};
|
|
|
|
int main() {
|
|
|
|
return EXIT_SUCCESS;
|
|
} |