zpmod  b19981f
High-performance Zsh module for script optimization and filesystem helpers
zpmod_analysis_stubs.h
Go to the documentation of this file.
1 /* Autogenerated lightweight stubs used only for static analysis include scans.
2  * Real builds include zsh.mdh/config.h through zpmod.mdh. */
3 #pragma once
4 #ifndef UNUSED
5 #define UNUSED(x) x
6 #endif
7 typedef void *Module;
8 /* Provide minimal declarations to avoid parser errors when analyzers scan
9  * files out-of-context. */
10 int bin_custom_dot(char *UNUSED(name), char **UNUSED(argv), UNUSED(void *ops),
11  UNUSED(int func));
12 int setup_(UNUSED(Module m));
13 int enables_(UNUSED(Module m), int **UNUSED(enables));
14 int boot_(UNUSED(Module m));
16 int finish_(UNUSED(Module m));
int bin_custom_dot(char *UNUSED(name), char **UNUSED(argv), UNUSED(void *ops), UNUSED(int func))
int boot_(UNUSED(Module m))
Optional early boot hook (unused).
Definition: module.c:54
#define UNUSED(x)
int cleanup_(UNUSED(Module m))
int finish_(UNUSED(Module m))
Finalize module: restore original source handlers.
Definition: module.c:58
int enables_(UNUSED(Module m), int **UNUSED(enables))
void * Module
int setup_(UNUSED(Module m))
Module setup: initialize option mapping and install source overrides.
Definition: module.c:34