Graphviz 12.0.1~dev.20240716.0800
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 <expr/exlib.h>
19
20/*
21 * no space message with default (empty) string value
22 */
23
24char*
26{
27 static const char null[1];
28
29 exerror("out of space");
30 return (char*)null;
31}
void exerror(const char *format,...)
Definition exerror.c:62
char * exnospace(void)
Definition exnospace.c:25