File: open_memstream.h

package info (click to toggle)
vde2 2.3.2-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,640 kB
  • sloc: ansic: 27,447; sh: 11,201; makefile: 413; cpp: 241; python: 107
file content (15 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (10)
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