Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cl-tar
cl-tar-file
Commits
4b35488d
Commit
4b35488d
authored
Aug 15, 2021
by
Eric Timmons
Browse files
Remove accidentally added file
parent
baf2492c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/bytevec.lisp
deleted
100644 → 0
View file @
baf2492c
(
in-package
#:tar
)
(
defparameter
*default-header-encoding*
:latin-1
)
(
defun
bytevec-to-string
(
bytevec
&optional
encoding
)
(
babel:octets-to-string
bytevec
:encoding
(
or
encoding
*default-header-encoding*
)))
(
defun
string-to-bytevec
(
string
&optional
encoding
)
(
babel:string-to-octets
string
:encoding
(
or
encoding
*default-header-encoding*
)))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment