/usr/include/skalibs/skamisc.h is in skalibs-dev 0.47-1.
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 | /* Public domain. */
#ifndef SKAMISC_H
#define SKAMISC_H
/* sucky name, eh ? */
#include "buffer.h"
#include "stralloc.h"
extern stralloc satmp ;
extern int skagetln (buffer_ref, stralloc *, int) ;
extern int skagetlnsep (buffer_ref, stralloc *, char const *, unsigned int) ;
extern int sauniquename (stralloc *) ;
#define skaoffsetof(n, s, field) do { s sofoftmp ; *(n) = (unsigned char *)&sofoftmp->field - (unsigned char *)&sofoftmp ; } while (0)
#endif
|