[#absl-InitializeSymbolizer] = xref:absl.adoc[absl]::InitializeSymbolizer :relfileprefix: ../ :mrdocs: Initializes the program counter symbolizer, given the path of the program (typically obtained through `main()`s `argv[0]`). The Abseil symbolizer allows you to read program counters (instruction pointer values) using their human‐readable names within output such as stack traces. == Synopsis Declared in `<absl/debugging/symbolize.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void InitializeSymbolizer(char const* argv0); ---- == Description Example: int main(int argc, char *argv[]) { absl::InitializeSymbolizer(argv[0]); // Now you can use the symbolizer } == Parameters [cols="1,4"] |=== | Name| Description | *argv0* | Path of the running program, typically `argv[0]` from `main()`. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#