File tree Expand file tree Collapse file tree 5 files changed +8
-5
lines changed
Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 11#! /bin/sh
22
3- gcc -Wall -Wextra main.c tea.c -std=c99 -Wpedantic -o tea -I .
3+ if [ ! -e bin/linux ]; then
4+ mkdir -p bin/linux || exit
5+ fi
6+ gcc -Wall -Wextra main.c tea.c -std=c99 -Wpedantic -o bin/linux/tea
File renamed without changes.
Original file line number Diff line number Diff line change 1212#ifndef __TEA__
1313#define __TEA__
1414
15- #include "headers/ stdint.h" // For standard int types
16- #include "headers/ stdbool.h" // for bool, true, false
15+ #include "stdint.h" // For standard int types
16+ #include "stdbool.h" // for bool, true, false
1717
1818 // Cannot be changed, without impact to the code.
1919 #define KEY_SIZE 16 // bytes
Original file line number Diff line number Diff line change 1414 * ---------------------------------------------------------------------------
1515 * */
1616
17- #include "tea.h"
17+ #include "headers/ tea.h"
1818#include "headers/stdint.h" // For standard int types.
1919#include "headers/unistd.h" // For unlink
2020#include <stdio.h> // For printf and NULL, etc..
Original file line number Diff line number Diff line change 99 * Dated : 16th August 2020
1010 * ---------------------------------------------------------------------------
1111 * */
12- #include "tea.h"
12+ #include "headers/ tea.h"
1313#include "headers/unistd.h" // For read, write, access, close
1414#include "headers/fcntl.h" // For open
1515#include <stdio.h> // For printf and NULL, etc..
You can’t perform that action at this time.
0 commit comments