This commit is contained in:
2026-04-09 15:08:25 +02:00
parent 1914d5c691
commit 6c6929bcb1
16 changed files with 3779 additions and 0 deletions
@@ -0,0 +1,32 @@
#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;
}