-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
49fa0a1
commit c59a91f
Showing
11 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
National Security Agency: last entry: Jack Thompson, 22.08.2016, Files modified: /usr/bin/confidential |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
sudo mkdir /usr/bin/confidential | ||
sudo touch /usr/bin/confidential/.secret | ||
sudo echo "In ce an a aparut prima versiune de Linux?" >> /usr/bin/confidential/.secret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Adauga codul aici. | ||
# Fii atent: Atunci cand scrii un Makefile, se tine cont de spatiere. | ||
# Trebuie sa folosesti tab, nu space, si doar atatea cate sunt necesare. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Adauga codul aici. | ||
# Fii atent: Atunci cand scrii un Makefile, se tine cont de spatiere. | ||
# Trebuie sa folosesti tab, nu space, si doar atatea cate sunt necesare. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#include <stdlib.h> | ||
#include <stdio.h> | ||
#include "utils.h" | ||
|
||
int main(void) | ||
{ | ||
simple_add(10, 20); | ||
do_print_crap(); | ||
|
||
puts("Hello, World!"); | ||
|
||
return 0; | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#include "utils.h" | ||
#include <stdio.h> | ||
|
||
int simple_add(int a, int b) | ||
{ | ||
printf("%d\n", a + b); | ||
return a + b; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#include <stdio.h> | ||
#include "utils.h" | ||
|
||
void do_print_crap(void) | ||
{ | ||
puts("craaaaap"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#ifndef __UTILS__H_ | ||
#define __UTILS__H_ | ||
|
||
void do_print_crap(); | ||
int simple_add(int a, int b); | ||
|
||
#endif |