24 lines
284 B
Common Lisp
24 lines
284 B
Common Lisp
|
(defpackage :rsss
|
||
|
(:use :cl)
|
||
|
(:export
|
||
|
|
||
|
;; PUBLIC FUNCTIONS
|
||
|
:feed-value
|
||
|
:feed-values
|
||
|
:feed-value-listless
|
||
|
|
||
|
:feed-items
|
||
|
|
||
|
:title
|
||
|
:description
|
||
|
:pubdate
|
||
|
:link
|
||
|
|
||
|
|
||
|
;; PRIVATE FUNCTIONS
|
||
|
:getf-string
|
||
|
:getf-strings))
|
||
|
|
||
|
|
||
|
(in-package :rsss)
|