src/package.lisp @ 82d5dd50f5a6 v1.2.0

Add Lispworks support to argv and exit

Fixes https://github.com/sjl/adopt/issues/4
author Steve Losh <steve@stevelosh.com>
date Tue, 16 Nov 2021 20:19:22 -0500
parents b9b3d5f9211c
children (none)
(defpackage :adopt
  (:use :cl)
  (:export
    :define-string
    :defparameters

    :make-option
    :make-boolean-options
    :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))