File: strlcat.h

package info (click to toggle)
readpe 0.85.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,636 kB
  • sloc: ansic: 21,151; xml: 558; makefile: 448; sh: 422
file content (9 lines) | stat: -rw-r--r-- 180 bytes parent folder | download
1
2
3
4
5
6
7
8
9
/* vim :set ts=4 sw=4 sts=4 et : */
#ifndef STRLCAT_H_INCLUDED
#define STRLCAT_H_INCLUDED

#include <stddef.h>

size_t bsd_strlcat(char *dst, const char *src, size_t siz);

#endif