2007-12-08 23:42:33 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
/// \file util.h
|
|
|
|
/// \brief Miscellaneous utility functions
|
|
|
|
//
|
2009-04-13 10:27:40 +02:00
|
|
|
// Author: Lasse Collin
|
2007-12-08 23:42:33 +01:00
|
|
|
//
|
2009-04-13 10:27:40 +02:00
|
|
|
// This file has been put into the public domain.
|
|
|
|
// You can do whatever you want with this file.
|
2007-12-08 23:42:33 +01:00
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-11-19 19:46:52 +01:00
|
|
|
/// \brief Safe malloc() that never returns NULL
|
|
|
|
///
|
|
|
|
/// \note xmalloc(), xrealloc(), and xstrdup() must not be used when
|
|
|
|
/// there are files open for writing, that should be cleaned up
|
|
|
|
/// before exiting.
|
|
|
|
#define xmalloc(size) xrealloc(NULL, size)
|
2007-12-08 23:42:33 +01:00
|
|
|
|
2008-11-19 19:46:52 +01:00
|
|
|
|
|
|
|
/// \brief Safe realloc() that never returns NULL
|
|
|
|
extern void *xrealloc(void *ptr, size_t size);
|
|
|
|
|
|
|
|
|
|
|
|
/// \brief Safe strdup() that never returns NULL
|
|
|
|
extern char *xstrdup(const char *src);
|
|
|
|
|
|
|
|
|
|
|
|
/// \brief Fancy version of strtoull()
|
|
|
|
///
|
|
|
|
/// \param name Name of the option to show in case of an error
|
|
|
|
/// \param value String containing the number to be parsed; may
|
|
|
|
/// contain suffixes "k", "M", "G", "Ki", "Mi", or "Gi"
|
|
|
|
/// \param min Minimum valid value
|
|
|
|
/// \param max Maximum valid value
|
|
|
|
///
|
|
|
|
/// \return Parsed value that is in the range [min, max]. Does not return
|
|
|
|
/// if an error occurs.
|
|
|
|
///
|
2007-12-08 23:42:33 +01:00
|
|
|
extern uint64_t str_to_uint64(const char *name, const char *value,
|
|
|
|
uint64_t min, uint64_t max);
|
|
|
|
|
|
|
|
|
2008-11-19 19:46:52 +01:00
|
|
|
/// \brief Check if filename is empty and print an error message
|
2007-12-08 23:42:33 +01:00
|
|
|
extern bool is_empty_filename(const char *filename);
|
|
|
|
|
2008-11-19 19:46:52 +01:00
|
|
|
|
|
|
|
/// \brief Test if stdin is a terminal
|
|
|
|
///
|
|
|
|
/// If stdin is a terminal, an error message is printed and exit status set
|
|
|
|
/// to EXIT_ERROR.
|
|
|
|
extern bool is_tty_stdin(void);
|
|
|
|
|
|
|
|
|
|
|
|
/// \brief Test if stdout is a terminal
|
|
|
|
///
|
|
|
|
/// If stdout is a terminal, an error message is printed and exit status set
|
|
|
|
/// to EXIT_ERROR.
|
|
|
|
extern bool is_tty_stdout(void);
|