diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-03-03 15:50:59 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-03-03 15:50:59 -0500 |
| commit | c234c92eeb5a87fe3dc617a1ddb23f21c5f29069 (patch) | |
| tree | 4336ca80830cee66eda2eddd295c1070fbe5f651 /pattern.h | |
| parent | 7fd49c022504d71fecc059446675813bdf6f5789 (diff) | |
Remove printf.h dependency
Diffstat (limited to 'pattern.h')
| -rw-r--r-- | pattern.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -3,7 +3,6 @@ // #pragma once -#include <printf.h> #include <stdbool.h> #include <stdint.h> #include <stdio.h> @@ -158,6 +157,6 @@ maybe_pat_t bp_pattern(const char *str, const char *end); void free_all_pats(void); __attribute__((nonnull)) void delete_pat(bp_pat_t **at_pat, bool recursive); -int set_pattern_printf_specifier(char specifier); +int fprint_pattern(FILE *stream, bp_pat_t *pat); // vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0 |
