[go: up one dir, main page]

File: foo.h

package info (click to toggle)
criterion 2.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 3,864 kB
  • sloc: ansic: 17,945; cpp: 774; python: 74; makefile: 25; sh: 19
file content (10 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#ifndef FOO_H_
#define FOO_H_

#include <stddef.h>

size_t foo_strlen(const char *src);
char *foo_strcpy(char *restrict dst, const char *restrict src);
char *foo_strdup(const char *src);

#endif /* !FOO_H_ */