logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git

consent.h (395B)


  1. // utils-std: Collection of commonly available Unix tools
  2. // SPDX-FileCopyrightText: 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
  3. // SPDX-License-Identifier: MPL-2.0
  4. #include <stdbool.h>
  5. extern const char *argv0;
  6. // Consent therefore defaults to no, including in cases of error
  7. bool consentf(const char *restrict fmt, ...);
  8. void consent_finish(void);
  9. void consent_init(void);