changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/dat/ini.lisp

changeset 698: 96958d3eb5b0
parent: 35a579313b80
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; ini.lisp --- INI Format
2 
3 ;; https://en.wikipedia.org/wiki/INI_file
4 
5 ;;; Code:
6 (in-package :dat/ini)
7 
8 (defun ini-write (value &optional stream))
9 (defun ini-encode (value &optional stream))
10 
11 (defun ini-read (stream))
12 (defun ini-decode (string &key (start 0) end))