#ifndef _ESCAPED_H_5f518369_ #define _ESCAPED_H_5f518369_ /* This file is in the public domain. */ #include /* * Handle control character filtering, as outlined in 4251 9.2. The * arguments are the FILE * to print to, the data block, its length, * and a maximum length (if the length is greater than the maximum, * the maximum is used instead); see escaped.c for more. */ extern void print_escaped(FILE *, const void *, int, int); #endif