17 lines
277 B
C
17 lines
277 B
C
//
|
|
// Created by k0rb4k on 30/03/2021.
|
|
//
|
|
|
|
#ifndef QOTD_QUOTE_H
|
|
#define QOTD_QUOTE_H
|
|
|
|
#include <stdio.h>
|
|
#include <bits/types/FILE.h>
|
|
#include <bits/types/struct_FILE.h>
|
|
|
|
void getRandomQuote(char quote[1024]);
|
|
|
|
void getQuote(int line, char quote[1024]);
|
|
|
|
#endif //QOTD_QUOTE_H
|