date and time created 85/09/21 15:05:43 by sam
[unix-history] / usr / src / lib / libplot / t4013 / label.c
CommitLineData
b059c7be
DF
1/*
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 */
6
da8dfedc 7#ifndef lint
b059c7be
DF
8static char sccsid[] = "@(#)label.c 5.1 (Berkeley) %G%";
9#endif not lint
da8dfedc
JK
10
11label(s)
12char *s;
13{
14 register i,c;
15 putch(037); /* alpha mode */
16 for(i=0; c=s[i]; i++)
17 putch(c);
18}