1
0
mirror of https://gitlab.com/80486DX2-66/gists synced 2024-09-19 14:55:34 +05:30

add copyleft notices

This commit is contained in:
Intel A80486DX2-66 2024-01-25 20:33:58 +03:00
parent f65917aec9
commit f98cbbaf84
Signed by: 80486DX2-66
GPG Key ID: 83631EF27054609B
8 changed files with 46 additions and 0 deletions

View File

@ -1,3 +1,10 @@
/*
* asprintf.c
*
* Author: Intel A80486DX2-66
* License: Creative Commons Zero 1.0 Universal
*/
#include "asprintf.h"
ssize_t asprintf(char** strp, char* format, ...) {

View File

@ -1,3 +1,10 @@
/*
* asprintf.h
*
* Author: Intel A80486DX2-66
* License: Creative Commons Zero 1.0 Universal
*/
#ifndef _ASPRINTF_H
#define _ASPRINTF_H

View File

@ -4,6 +4,9 @@
*
* Expects the floating point string to be in stdin.
*
* The new added code:
* Author: Intel A80486DX2-66
* License: Creative Commons Zero 1.0 Universal
* The original code is from musl libc: version 1.2.4, src/internal/floatscan.c
*/

View File

@ -1,3 +1,10 @@
/*
* fwrite_le.c
*
* Author: Intel A80486DX2-66
* License: Creative Commons Zero 1.0 Universal
*/
#include "fwrite_le.h"
int detect_endianness(void) {

View File

@ -1,3 +1,10 @@
/*
* fwrite_le.h
*
* Author: Intel A80486DX2-66
* License: Creative Commons Zero 1.0 Universal
*/
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

View File

@ -1,4 +1,6 @@
/*
* reverse-ramdisk.c
*
* C programming idea: Handling temporary files like memory allocations
* (allocating -> creating empty file, using -> locking for R/W,
* freeing -> deleting).
@ -13,6 +15,9 @@
*
* To-Do: Test: Fix the bug with invalid next size to reallocate
* To-Do: Test: Automate the test verification
*
* Author: Intel A80486DX2-66
* License: Creative Commons Zero 1.0 Universal
*/
#include <errno.h>

View File

@ -1,4 +1,6 @@
/*
bytebeat-render.js
Node.JS: Bytebeat generator
Note: Calls `ffmpeg` to convert output raw audio to a WAVE file
@ -7,6 +9,9 @@ Warning: The current result is quick and dirty. Not for educational or
production purposes.
To-Do: Fix signed bytebeat and floatbeat
Author: Intel A80486DX2-66
License: Creative Commons Zero 1.0 Universal
*/
const { appendFileSync, unlinkSync, writeFileSync } = require("fs")

View File

@ -1,5 +1,10 @@
#!/usr/bin/python3
# git_commit_simulator.py
#
# Author: Intel A80486DX2-66
# License: Creative Commons Zero 1.0 Universal
from datetime import datetime
from difflib import unified_diff
from typing import List, Union