This repository has been archived on 2026-05-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
prog-104-p-03-2030/functional_market/Fundamentals/crepe_stream.c
T
2026-04-09 15:08:25 +02:00

33 lines
414 B
C

#include "crepe_stream.h"
#include "toolbox.h"
struct array *sort_by_prices(struct array *arr)
{
(void)arr;
return NULL;
}
struct array *names(struct array *arr)
{
(void)arr;
return NULL;
}
struct array *vegetarian(struct array *arr)
{
(void)arr;
return NULL;
}
int total_price(struct array *arr)
{
(void)arr;
return 0;
}
void print_menu(struct array *arr)
{
(void)arr;
}