mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
51295a4d3e
Submitted-By: Kent Vander Velden <graphix@iastate.edu>
52 lines
1,005 B
C
52 lines
1,005 B
C
/*
|
|
* Various minor routines...
|
|
*
|
|
* Copyright 1987, 1988, 1989 by MIT
|
|
*
|
|
* For copyright information, see copyright.h.
|
|
*/
|
|
|
|
#include "copyright.h"
|
|
#include <stdio.h>
|
|
#include "ss_internal.h"
|
|
|
|
#define DECLARE(name) name(argc,argv,sci_idx)int argc,sci_idx;char **argv;
|
|
|
|
/*
|
|
* ss_self_identify -- assigned by default to the "." request
|
|
*/
|
|
void
|
|
DECLARE(ss_self_identify)
|
|
{
|
|
register ss_data *info = ss_info(sci_idx);
|
|
printf("%s version %s\n", info->subsystem_name,
|
|
info->subsystem_version);
|
|
}
|
|
|
|
/*
|
|
* ss_subsystem_name -- print name of subsystem
|
|
*/
|
|
void
|
|
DECLARE(ss_subsystem_name)
|
|
{
|
|
printf("%s\n", ss_info(sci_idx)->subsystem_name);
|
|
}
|
|
|
|
/*
|
|
* ss_subsystem_version -- print version of subsystem
|
|
*/
|
|
void
|
|
DECLARE(ss_subsystem_version)
|
|
{
|
|
printf("%s\n", ss_info(sci_idx)->subsystem_version);
|
|
}
|
|
|
|
/*
|
|
* ss_unimplemented -- routine not implemented (should be
|
|
* set up as (dont_list,dont_summarize))
|
|
*/
|
|
void
|
|
DECLARE(ss_unimplemented)
|
|
{
|
|
ss_perror(sci_idx, SS_ET_UNIMPLEMENTED, "");
|
|
}
|