Export public functions as extern C

This commit is contained in:
Guillem Jover 2009-05-25 09:25:13 +02:00
parent 61fa98ea9e
commit cb1346e5b3
6 changed files with 23 additions and 3 deletions

View File

@ -1,5 +1,6 @@
/*
* Copyright © 2006 Robert Millan
* Copyright © 2009 Guillem Jover
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@ -27,12 +28,15 @@
#ifndef LIBBSD_ERR_H
#define LIBBSD_ERR_H
#include <sys/cdefs.h>
#include <err.h>
#include <stdarg.h>
__BEGIN_DECLS
extern void warnc (int code, const char *format, ...);
extern void vwarnc (int code, const char *format, va_list ap);
extern void errc (int status, int code, const char *format, ...);
extern void verrc (int status, int code, const char *format, va_list ap);
__END_DECLS
#endif

View File

@ -1,5 +1,6 @@
/*
* Copyright © 2006 Robert Millan
* Copyright © 2009 Guillem Jover
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@ -27,10 +28,13 @@
#ifndef LIBBSD_GETOPT_H
#define LIBBSD_GETOPT_H
#include <sys/cdefs.h>
#include <getopt.h>
__BEGIN_DECLS
extern int optreset;
int bsd_getopt (int, char **, char *);
__END_DECLS
#endif

View File

@ -1,5 +1,5 @@
/*
* Copyright © 2008 Guillem Jover
* Copyright © 2008, 2009 Guillem Jover
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@ -27,9 +27,12 @@
#ifndef LIBBSD_INET_H
#define LIBBSD_INET_H
#include <sys/cdefs.h>
#include <stddef.h>
__BEGIN_DECLS
int inet_net_pton(int af, const char *src, void *dst, siez_t size);
__END_DECLS
#endif

View File

@ -1,5 +1,5 @@
/*
* Copyright © 2004, 2005 Guillem Jover
* Copyright © 2004, 2005, 2009 Guillem Jover
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@ -27,11 +27,14 @@
#ifndef LIBBSD_RANDOM_H
#define LIBBSD_RANDOM_H
#include <sys/cdefs.h>
#include <sys/types.h>
__BEGIN_DECLS
u_int32_t arc4random();
void arc4random_stir();
void arc4random_addrandom(u_char *dat, int datlen);
__END_DECLS
#endif

View File

@ -1,7 +1,7 @@
/*
* Copyright © 2005 Aurelien Jarno
* Copyright © 2006 Robert Millan
* Copyright © 2008 Guillem Jover
* Copyright © 2008, 2009 Guillem Jover
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@ -29,9 +29,11 @@
#ifndef LIBBSD_STDLIB_H
#define LIBBSD_STDLIB_H
#include <sys/cdefs.h>
#include <sys/stat.h>
#include <stdlib.h>
__BEGIN_DECLS
const char *fmtcheck (const char *, const char *);
char *getprogname ();
@ -45,5 +47,6 @@ int heapsort (void *, size_t, size_t, int (*)(const void *, const void *));
mode_t getmode(const void *set, mode_t mode);
void *setmode(const char *mode_str);
__END_DECLS
#endif

View File

@ -27,15 +27,18 @@
#ifndef LIBBSD_STRING_H
#define LIBBSD_STRING_H
#include <sys/cdefs.h>
#include <sys/types.h>
#include <stddef.h>
#include <stdio.h>
__BEGIN_DECLS
size_t strlcpy(char *dst, const char *src, size_t siz);
size_t strlcat(char *dst, const char *src, size_t siz);
char *fgetln(FILE *fp, size_t *lenp);
wchar_t *fgetwln(FILE * __restrict fp, size_t *lenp);
void strmode(mode_t mode, char *str);
__END_DECLS
#endif