Graphviz 14.1.2~dev.20260123.1158
Loading...
Searching...
No Matches
exnospace.c
Go to the documentation of this file.
1/*************************************************************************
2 * Copyright (c) 2011 AT&T Intellectual Property
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * https://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors: Details at https://graphviz.org
9 *************************************************************************/
10
11/*
12 * Glenn Fowler
13 * AT&T Research
14 *
15 * expression library
16 */
17
18#include "config.h"
19
20#include <expr/exlib.h>
21
22/*
23 * no space message with default (empty) string value
24 */
25
26char*
28{
29 static const char null[1];
30
31 exerror("out of space");
32 return (char*)null;
33}
void exerror(const char *format,...)
Definition exerror.c:64
char * exnospace(void)
Definition exnospace.c:27