/usr/include/pike8.0/pike/sscanf.h is in pike8.0-dev 8.0.498-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | /*
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information.
*/
#ifndef SSCANF_H
#define SSCANF_H
#define SSCANF_FLAG_76_COMPAT 0x1
INT32 low_sscanf_pcharp(PCHARP input, ptrdiff_t len,
PCHARP format, ptrdiff_t format_len,
ptrdiff_t *chars_matched, int flags);
INT32 low_sscanf(struct pike_string *data, struct pike_string *format, INT32 flags);
void o_sscanf(INT32 args, INT32 flags);
PMOD_EXPORT void f_sscanf(INT32 args);
void f_sscanf_76(INT32 args);
void f___handle_sscanf_format(INT32 flags);
#endif
|