mirror of
https://gitlab.com/80486DX2-66/gists
synced 2024-11-12 22:45:54 +05:30
add copyleft notices
This commit is contained in:
parent
f65917aec9
commit
f98cbbaf84
@ -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, ...) {
|
||||
|
@ -1,3 +1,10 @@
|
||||
/*
|
||||
* asprintf.h
|
||||
*
|
||||
* Author: Intel A80486DX2-66
|
||||
* License: Creative Commons Zero 1.0 Universal
|
||||
*/
|
||||
|
||||
#ifndef _ASPRINTF_H
|
||||
#define _ASPRINTF_H
|
||||
|
||||
|
@ -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
|
||||
*/
|
||||
|
||||
|
@ -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) {
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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")
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user