removed *all* trailing spaces
God, please...
This commit is contained in:
parent
63f2aefe7e
commit
f2da93818b
4
.github/workflows/why2-project.yml
vendored
4
.github/workflows/why2-project.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
configure: configure.sh
|
configure: configure.sh
|
||||||
build: build.sh
|
build: build.sh
|
||||||
test: test
|
test: test
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
@ -26,7 +26,7 @@ jobs:
|
|||||||
|
|
||||||
- if: matrix.os == 'ubuntu-latest'
|
- if: matrix.os == 'ubuntu-latest'
|
||||||
name: Update packages
|
name: Update packages
|
||||||
run: |
|
run: |
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt upgrade
|
sudo apt upgrade
|
||||||
|
|
||||||
|
8
.github/workflows/why2-test.yml
vendored
8
.github/workflows/why2-test.yml
vendored
@ -18,7 +18,7 @@ jobs:
|
|||||||
configure: configure.sh
|
configure: configure.sh
|
||||||
build: build.sh
|
build: build.sh
|
||||||
app: why2
|
app: why2
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
@ -27,7 +27,7 @@ jobs:
|
|||||||
|
|
||||||
- if: matrix.os == 'ubuntu-latest'
|
- if: matrix.os == 'ubuntu-latest'
|
||||||
name: Update packages
|
name: Update packages
|
||||||
run: |
|
run: |
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt upgrade
|
sudo apt upgrade
|
||||||
|
|
||||||
@ -65,7 +65,7 @@ jobs:
|
|||||||
output: out/why2-test
|
output: out/why2-test
|
||||||
configure: configure.sh
|
configure: configure.sh
|
||||||
app: why2
|
app: why2
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
@ -74,7 +74,7 @@ jobs:
|
|||||||
|
|
||||||
- if: matrix.os == 'ubuntu-latest'
|
- if: matrix.os == 'ubuntu-latest'
|
||||||
name: Update packages
|
name: Update packages
|
||||||
run: |
|
run: |
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt upgrade
|
sudo apt upgrade
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ outputFlags encryptText(char *text, char *keyNew, inputFlags flags)
|
|||||||
{
|
{
|
||||||
//SET numberBuffer TO RANDOM NUMBER BETWEEN 0 AND 52
|
//SET numberBuffer TO RANDOM NUMBER BETWEEN 0 AND 52
|
||||||
numberBuffer = (rand() % 52) + 1;
|
numberBuffer = (rand() % 52) + 1;
|
||||||
|
|
||||||
//GET CHAR FROM numberBuffer
|
//GET CHAR FROM numberBuffer
|
||||||
if (numberBuffer > 26)
|
if (numberBuffer > 26)
|
||||||
{
|
{
|
||||||
|
@ -90,7 +90,7 @@ void checkVersion(inputFlags flags)
|
|||||||
|
|
||||||
struct json_object *deprecated;
|
struct json_object *deprecated;
|
||||||
json_object_object_get_ex(parsedJson, "deprecated", &deprecated);
|
json_object_object_get_ex(parsedJson, "deprecated", &deprecated);
|
||||||
|
|
||||||
//COUNT versionsIndex
|
//COUNT versionsIndex
|
||||||
for (int i = 0; i < json_object_array_length(deprecated); i++)
|
for (int i = 0; i < json_object_array_length(deprecated); i++)
|
||||||
{
|
{
|
||||||
@ -130,7 +130,7 @@ void checkVersion(inputFlags flags)
|
|||||||
void generateTextKeyChain(char key[], int *textKeyChain, int textKeyChainSize)
|
void generateTextKeyChain(char key[], int *textKeyChain, int textKeyChainSize)
|
||||||
{
|
{
|
||||||
int numberBuffer;
|
int numberBuffer;
|
||||||
|
|
||||||
for (int i = 0; i < textKeyChainSize; i++)
|
for (int i = 0; i < textKeyChainSize; i++)
|
||||||
{
|
{
|
||||||
numberBuffer = i;
|
numberBuffer = i;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user