• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
        • Warnings
        • Primitives
        • Use-set
        • Syntax
        • Getting-started
        • Utilities
        • Loader
        • Transforms
        • Lint
          • Vl-lintconfig-p
          • Lucid
          • Skip-detection
          • Vl-lintresult-p
          • Lint-warning-suppression
          • Condcheck
          • Selfassigns
          • Leftright-check
          • Dupeinst-check
          • Oddexpr-check
          • Remove-toohard
          • Qmarksize-check
          • Portcheck
          • Duplicate-detect
          • Vl-print-certain-warnings
          • Duperhs-check
          • *vl-lint-help*
          • Lint-stmt-rewrite
          • Drop-missing-submodules
          • Check-case
            • Vl-modulelist-check-case
            • Vl-collect-ieqv-strings
            • Vl-find-case-equivalent-strings
            • Vl-module-check-case
            • Vl-design-check-case
            • Vl-equiv-strings-to-lines
            • Drop-user-submodules
            • Check-namespace
            • Vl-lint
          • Mlib
          • Server
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Check-case

    Vl-equiv-strings-to-lines

    Signature
    (vl-equiv-strings-to-lines x &key (ps 'ps)) → ps
    Arguments
    x — Guard (string-list-listp x).

    Definitions and Theorems

    Function: vl-equiv-strings-to-lines-fn

    (defun vl-equiv-strings-to-lines-fn (x ps)
      (declare (xargs :stobjs (ps)))
      (declare (xargs :guard (string-list-listp x)))
      (let ((__function__ 'vl-equiv-strings-to-lines))
        (declare (ignorable __function__))
        (if (atom x)
            ps
          (vl-ps-seq (vl-basic-cw "      - ~&0~%" (car x))
                     (vl-equiv-strings-to-lines (cdr x))))))