File: open_memstream.h

package info (click to toggle)
vde2 2.3.2%2Br586-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,956 kB
  • ctags: 4,480
  • sloc: ansic: 32,683; sh: 11,375; makefile: 474; cpp: 241; python: 64
file content (15 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef OPEN_MEMSTREAM_H__
#define OPEN_MEMSTREAM_H__
#ifndef HAVE_OPEN_MEMSTREAM

#include <stdio.h>

FILE *open_memstream(char **ptr, size_t *sizeloc);

#else

#define _GNU_SOURCE
#include <stdio.h>

#endif
#endif