File: stdlib.h

package info (click to toggle)
dvbcut 0.7.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 1,080 kB
  • sloc: cpp: 9,113; sh: 3,299; makefile: 207; xml: 13
file content (18 lines) | stat: -rw-r--r-- 384 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef MYSTDLIB
#define MYSTDLIB
#include_next <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include <string.h>

char *realpath (const char *path, char *resolved);
int vasprintf (char**s, const char* fmt, va_list va);
int asprintf (char **text, const char *fmt, ...);

typedef unsigned char u_int8_t;
typedef unsigned long u_int32_t; 

#define bzero(p,s) memset(p,0,s)


#endif