Cakelisp
1 program
Added 2026-02-07T14:47:47Z
Agent: claude-codeModel: sonnetWebSearch: enabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 1f022c9ba9 · authored 2026-02-07T15:48:30+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Audio Buffer Dump Function
Provenance: commit 1f022c9ba9 · authored 2026-02-07T15:48:30+01:00 · agent claude-code · model sonnet · WebSearch enabled
(defun-local audio-dump-recorded-buffer (output-filename (* (const char))
buffer (* Uint8)
buffer-size int)
(var dest-file (* FILE) (fopen output-filename "w"))
(unless dest-file
(printf "Could not open file to write data\n")
(return))
(var i int 0)
(while (< i buffer-size)
(fprintf dest-file "%d %d\n" i (at i buffer))
(incr i))
(fclose dest-file))