File: strndup.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 (10 lines) | stat: -rw-r--r-- 122 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
#ifndef STRNDUP_H__
#define STRNDUP_H__

#include <string.h>

#undef strndup

char *strndup(const char*, size_t);

#endif