Skip to content

Instantly share code, notes, and snippets.

@isterin
Created August 2, 2010 17:34
Show Gist options
  • Save isterin/504998 to your computer and use it in GitHub Desktop.
Save isterin/504998 to your computer and use it in GitHub Desktop.
(defmethod dbm-put ((db kc-dbm) key value &key mode (overwrite-if-exists T))
(if overwrite-if-exists
(kcdbset (ptr-of db)
(convert-to-foreign key :string) (convert-to-foreign (length key) :unsigned-long)
(convert-to-foreign value :string) (convert-to-foreign (length value) :unsigned-long))
(kcdbadd (ptr-of db)
(convert-to-foreign key :string) (convert-to-foreign (length key) :unsigned-long)
(convert-to-foreign value :string) (convert-to-foreign (length value) :unsigned-long)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment