Move useful functions to separate file

This commit is contained in:
Dimitri Lozeve 2020-06-02 21:10:18 +02:00
parent 2d2cb64b8d
commit 90ec7de0ac
5 changed files with 52 additions and 37 deletions

View file

@ -1,2 +1,3 @@
project('cryptopals', 'c')
executable('ex01', 'ex01/main.c')
executable('ex01', ['ex01/main.c', 'utils.c'])