src/package.lisp @ d5dbc46f6ddb

Update URLs
author Steve Losh <steve@stevelosh.com>
date Mon, 23 Dec 2019 15:13:14 -0500
parents 502eaba9e114
children b9b3d5f9211c
(defpackage :adopt
  (:use :cl)
  (:export
    :define-string

    :make-option
    :make-group
    :make-interface

    :parse-options
    :parse-options-or-exit

    :print-help
    :print-help-and-exit
    :print-error-and-exit
    :print-manual

    :argv
    :exit

    :unrecognized-option
    :problematic-option
    :discard-option
    :treat-as-argument
    :supply-new-value

    :flip
    :collect
    :first
    :last

    )
  (:shadow :collect :reduce :first :last))