21 lines
406 B
C
21 lines
406 B
C
/*
|
|
* INPUT: query for previous state
|
|
* linked list of tasks to store
|
|
*
|
|
* OUTPUT:
|
|
* linked list of tasks from file
|
|
* OK
|
|
*
|
|
*
|
|
*/
|
|
|
|
/************************************************************
|
|
*Create a database and handel it
|
|
*Created by Jan on 13.12.2024.
|
|
*
|
|
************************************************************/
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
#include "planner.h"
|
|
|