From 0cd8d96fa9760983065342729ba94133df2d69fa Mon Sep 17 00:00:00 2001 From: lenamarochkina Date: Fri, 21 Oct 2022 18:18:00 +0200 Subject: [PATCH] (refactor) changes file comments --- src/bvs.c | 10 ++++++++++ src/bvs.h | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/src/bvs.c b/src/bvs.c index 8081bce..6b16fde 100644 --- a/src/bvs.c +++ b/src/bvs.c @@ -1,3 +1,13 @@ +/** + * Implementace překladače imperativního jazyka IFJ22. + * @authors + * xmaroc00, Elena Marochkina + * + * @file bvs.c + * @brief Binary search tree + * @date 21.10.2022 + */ + #include "bvs.h" tree_node *create_node(int value) { diff --git a/src/bvs.h b/src/bvs.h index 8228207..85bf902 100644 --- a/src/bvs.h +++ b/src/bvs.h @@ -1,3 +1,13 @@ +/** + * Implementace překladače imperativního jazyka IFJ22. + * @authors + * xmaroc00, Elena Marochkina + * + * @file bvs.h + * @brief Binary search tree + * @date 21.10.2022 + */ + #ifndef IFJ_PROJ_2022_BVS_H #define IFJ_PROJ_2022_BVS_H