Fix: header-comment link

This commit is contained in:
xamidev
2024-08-24 17:23:26 +02:00
parent fbd4fa6089
commit d10e00835c
48 changed files with 48 additions and 48 deletions

View File

@@ -1,7 +1,7 @@
// Simple brainfuck interpreter program
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "../kernel/system.h"
#include "../libc/stdio.h"

View File

@@ -1,7 +1,7 @@
// Cipher programs
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "../libc/stdio.h"
#include "ciphers.h"

View File

@@ -1,7 +1,7 @@
// Cipher programs header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef CIPHERS_H
#define CIPHERS_H

View File

@@ -1,7 +1,7 @@
// Conway's Game of Life program
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "conway.h"
#include "../libc/stdio.h"

View File

@@ -1,7 +1,7 @@
// Conway's Game of Life program header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef CONWAY_H
#define CONWAY_H

View File

@@ -1,7 +1,7 @@
// Basic math expression lexer and parser program
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include <stdint.h>
#include "../kernel/system.h"

View File

@@ -1,7 +1,7 @@
// Miscellaneous small programs
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "../libc/stdio.h"
#include "../kernel/system.h"

View File

@@ -1,7 +1,7 @@
// Prime number computation program
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include <stdint.h>
#include "../libc/stdio.h"

View File

@@ -1,7 +1,7 @@
// Global program entry points header
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#ifndef PROGRAMS_H
#define PROGRAMS_H

View File

@@ -1,7 +1,7 @@
// System information program
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "../kernel/sysinfo.h"
#include "../libc/stdio.h"

View File

@@ -1,7 +1,7 @@
// Pseudo-random word generation program
// Author: xamidev
// Licensed under the Unlicense. See the repo below.
// https//github.com/xamidev/blankos
// https://github.com/xamidev/blankos
#include "../libc/stdio.h"
#include "../libc/crypto.h"