/usr/share/guile/2.0/rnrs
NameSizeModeActions
arithmetic/-0755rm
io/-0755rm
records/-0755rm
base.scm102940644editdlrm
bytevectors.scm33830644editdlrm
conditions.scm69980644editdlrm
control.scm9860644editdlrm
enums.scm54630644editdlrm
eval.scm14350644editdlrm
exceptions.scm122000644editdlrm
files.scm34060644editdlrm
hashtables.scm61690644editdlrm
lists.scm20320644editdlrm
mutable-pairs.scm9690644editdlrm
mutable-strings.scm9890644editdlrm
programs.scm9640644editdlrm
r5rs.scm12380644editdlrm
sorting.scm12010644editdlrm
syntax-case.scm18960644editdlrm
unicode.scm23440644editdlrm
Edit: /usr/share/guile/2.0/rnrs/mutable-strings.scm (989B)
;;; mutable-strings.scm --- The R6RS mutable string library ;; Copyright (C) 2010 Free Software Foundation, Inc. ;; ;; This library is free software; you can redistribute it and/or ;; modify it under the terms of the GNU Lesser General Public ;; License as published by the Free Software Foundation; either ;; version 3 of the License, or (at your option) any later version. ;; ;; This library is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; Lesser General Public License for more details. ;; ;; You should have received a copy of the GNU Lesser General Public ;; License along with this library; if not, write to the Free Software ;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA (library (rnrs mutable-strings (6)) (export string-set! string-fill!) (import (only (guile) string-set! string-fill!)))