Files
mercury/runtime/mercury_runtime_util.h
Mark Brown d465fa53cb Update the COPYING.LIB file and references to it.
Discussion of these changes can be found on the Mercury developers
mailing list archives from June 2018.

COPYING.LIB:
    Add a special linking exception to the LGPL.

*:
    Update references to COPYING.LIB.

    Clean up some minor errors that have accumulated in copyright
    messages.
2018-06-09 17:43:12 +10:00

31 lines
1.1 KiB
C

// vim: ts=4 sw=4 expandtab ft=c
// Copyright (C) 2001,2006 The University of Melbourne.
// Copyright (C) 2014, 2016, 2018 The Mercury team.
// This file is distributed under the terms specified in COPYING.LIB.
#ifndef MERCURY_RUNTIME_UTIL_H
#define MERCURY_RUNTIME_UTIL_H
#include <stdio.h>
// A reasonable buffer size for MR_strerror().
#define MR_STRERROR_BUF_SIZE 256
// Thread-safe strerror function. Returns a pointer to a null terminated string
// describing the error number. The returned pointer may be to the provided
// buffer, or it may be a pointer into static or thread-local memory.
// errno may be modified by this call.
extern const char *MR_strerror(int errnum, char *buf, size_t buflen);
extern FILE *MR_checked_fopen(const char *filename,
const char *message, const char *mode);
extern void MR_checked_fclose(FILE *file, const char *filename);
extern void MR_checked_atexit(void (*func)(void));
extern int MR_setenv(const char *name, const char *value,
int overwrite);
#endif // MERCURY_RUNTIME_UTIL_H