Compare commits

..

No commits in common. "fb16ffa0562d11e1c57d597f99b03ff1f7bdfd65" and "e0a1ee3551835751d4625faef487068562c81d1a" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
ISC License
ISC License Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC")
Copyright (c) 2020 by Logen Kain
Copyright (c) 1995-2003 by Internet Software Consortium
Permission to use, copy, modify, and /or distribute this software for any
purpose with or without fee is hereby granted, provided that the above copyright

View File

@ -1,7 +1,6 @@
;;;; Make a macro that is like C's printf statement
(defmacro printf (string &rest vars)
"Pretend to be printf... except preceding dec places"
`(format t ,(printf-to-format string) ,@vars))
(defun replace-all (string part replacement &key (test #'char=))