blob: 0333c02efb86c2f1e2cedbea078bf2fe8bfa6ac9 (
plain) (
tree)
|
|
// Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// See the LICENSE file
// Portions Copyright (c) Athena Dev Teams
#define HERCULES_CORE
#include "nullpo.h"
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#include "../common/showmsg.h"
/**
* Reports failed assertions or NULL pointers
*
* @param file Source file where the error was detected
* @param line Line
* @param func Function
* @param targetname Name of the checked symbol
* @param title Message title to display (i.e. failed assertion or nullpo info)
*/
void assert_report(const char *file, int line, const char *func, const char *targetname, const char *title) {
if (file == NULL)
file = "??";
if (func == NULL || *func == '\0')
func = "unknown";
ShowError("--- %s --------------------------------------------\n", title);
ShowError("%s:%d: '%s' in function `%s'\n", file, line, targetname, func);
ShowError("--- end %s ----------------------------------------\n", title);
}
|