• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
        • Error-checking
        • Fty-extensions
        • Isar
        • Kestrel-utilities
        • Set
        • Soft
        • C
          • Syntax-for-tools
          • Atc
            • Atc-implementation
              • Atc-abstract-syntax
              • Atc-pretty-printer
                • Pprint-expressions
                • Pprint-expr
                • Expr-grade
                • Pprint-obj-declor
                • Expr-grade-<=
                • Binop-expected-grades
                • Pprint-obj-declon
                • Expr->grade
                • Pprint-tyspecseq
                • Pprint-tag-declon
                • Pprint-struct-declon-list
                • Pprint-fun-declor
                  • Pprint-file
                  • Pprint-stmt
                  • Pprint-struct-declon
                  • Pprint-obj-adeclor
                  • Pprint-initer
                  • Pprint-fun-declon
                  • Pprint-indent
                  • Pprint-hex-const
                  • Pprint-fileset
                  • Pprint-dec-const
                  • Pprinted-lines-to-file
                  • Pprint-tyname
                  • Pprint-param-declon-list
                  • Pprint-oct-const
                  • Pprint-iconst-length
                  • Pprint-iconst
                  • Pprint-const
                  • Expr-grade-index
                  • Pprint-param-declon
                  • Pprint-label
                  • Pprint-ident-list
                  • Pprint-binop
                  • Pprint-fundef
                  • Pprint-file-to-filesystem
                  • Pprint-ext-declon-list
                  • Pprint-unop
                  • Pprint-line
                  • Pprint-ident
                  • Pprint-ext-declon
                  • Pprint-comma-sep
                  • Pprint-transunit
                  • Pprint-one-line
                  • Pprinted-lines-to-channel
                  • Pprint-one-line-blank
                  • Pprint-line-blank
                • Atc-event-and-code-generation
                • Fty-pseudo-term-utilities
                • Atc-term-recognizers
                • Atc-input-processing
                • Atc-shallow-embedding
                • Atc-process-inputs-and-gen-everything
                • Atc-table
                • Atc-fn
                • Atc-pretty-printing-options
                • Atc-types
                • Atc-macro-definition
              • Atc-tutorial
            • Language
            • Representation
            • Transformation-tools
            • Insertion-sort
            • Pack
          • Bv
          • Imp-language
          • Event-macros
          • Java
          • Bitcoin
          • Ethereum
          • Yul
          • Zcash
          • ACL2-programming-language
          • Prime-fields
          • Json
          • Syntheto
          • File-io-light
          • Cryptography
          • Number-theory
          • Lists-light
          • Axe
          • Builtins
          • Solidity
          • Helpers
          • Htclient
          • Typed-lists-light
          • Arithmetic-light
        • X86isa
        • Axe
        • Execloader
      • Math
      • Testing-utilities
    • Atc-pretty-printer

    Pprint-fun-declor

    Pretty-print a function declarator.

    Signature
    (pprint-fun-declor declor) → part
    Arguments
    declor — Guard (fun-declorp declor).
    Returns
    part — Type (msgp part).

    If the parameter list is empty, we pretty-print void for the parameters instead of nothing, which more clearly say that the function takes no parameters [C17:6.7.6.3/10] [C17:6.7.6.3/14]. If the declarator is part of a function definition, it does not make a difference, but otherwise it makes a difference; see the references given just above.

    Definitions and Theorems

    Function: pprint-fun-declor

    (defun pprint-fun-declor (declor)
     (declare (xargs :guard (fun-declorp declor)))
     (let ((__function__ 'pprint-fun-declor))
      (declare (ignorable __function__))
      (fun-declor-case
       declor
       :base
       (msg
         "~@0(~@1)" (pprint-ident declor.name)
         (if (consp declor.params)
             (pprint-comma-sep (pprint-param-declon-list declor.params))
           "void"))
       :pointer (msg "*~@0"
                     (pprint-fun-declor declor.decl)))))

    Theorem: msgp-of-pprint-fun-declor

    (defthm msgp-of-pprint-fun-declor
      (b* ((part (pprint-fun-declor declor)))
        (msgp part))
      :rule-classes :rewrite)

    Theorem: pprint-fun-declor-of-fun-declor-fix-declor

    (defthm pprint-fun-declor-of-fun-declor-fix-declor
      (equal (pprint-fun-declor (fun-declor-fix declor))
             (pprint-fun-declor declor)))

    Theorem: pprint-fun-declor-fun-declor-equiv-congruence-on-declor

    (defthm pprint-fun-declor-fun-declor-equiv-congruence-on-declor
      (implies (fun-declor-equiv declor declor-equiv)
               (equal (pprint-fun-declor declor)
                      (pprint-fun-declor declor-equiv)))
      :rule-classes :congruence)