|
|
| File: [Development] / projects / inventor / libimage / name.c (download)
Revision 1.1.1.1 (vendor branch), Tue Aug 15 12:56:29 2000 UTC (17 years, 2 months ago) by naaman
Initial check-in based on 2.1.5 (SGI IRIX) source tree. |
/*
* isetname and isetcolormap -
*
* Paul Haeberli - 1984
*
*/
#include <stdio.h>
#include <string.h>
#include "image.h"
void isetname(IMAGE *image, char *name)
{
strncpy(image->name,name,80);
}
void isetcolormap(IMAGE *image, int colormap)
{
image->colormap = colormap;
}