Skip to content

Commit

Permalink
(refactor) changes file comments
Browse files Browse the repository at this point in the history
  • Loading branch information
LenaMarochkina committed Oct 21, 2022
1 parent c2ab24d commit 0cd8d96
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/bvs.c
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
10 changes: 10 additions & 0 deletions src/bvs.h
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 0cd8d96

Please sign in to comment.