home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1999 March B
/
SCO_CASTOR4RRT.iso
/
vxvm
/
root.2
/
usr
/
include
/
volpfmt.h
/
volpfmt
Wrap
Text File
|
1998-08-19
|
2KB
|
81 lines
/*
* Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved.
*
* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE
* SANTA CRUZ OPERATION INC.
*
* The copyright notice above does not evidence any actual or intended
* publication of such source code.
*/
/* @(#)lib.vxvm:libvxvm/common/libvxvm/volpfmt.h 1.1 1/24/97 21:50:12 - lib.vxvm:libvxvm/common/libvxvm/volpfmt.h */
#ident "@(#)lib.vxvm:libvxvm/common/libvxvm/volpfmt.h 1.1"
/*
* Copyright(C)1996 VERITAS Software Corporation. ALL RIGHTS RESERVED.
* UNPUBLISHED -- RIGHTS RESERVED UNDER THE COPYRIGHT
* LAWS OF THE UNITED STATES. USE OF A COPYRIGHT NOTICE
* IS PRECAUTIONARY ONLY AND DOES NOT IMPLY PUBLICATION
* OR DISCLOSURE.
*
* THIS SOFTWARE CONTAINS CONFIDENTIAL INFORMATION AND
* TRADE SECRETS OF VERITAS SOFTWARE. USE, DISCLOSURE,
* OR REPRODUCTION IS PROHIBITED WITHOUT THE PRIOR
* EXPRESS WRITTEN PERMISSION OF VERITAS SOFTWARE.
*
* RESTRICTED RIGHTS LEGEND
* USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT IS
* SUBJECT TO RESTRICTIONS AS SET FORTH IN SUBPARAGRAPH
* (C) (1) (ii) OF THE RIGHTS IN TECHNICAL DATA AND
* COMPUTER SOFTWARE CLAUSE AT DFARS 252.227-7013.
* VERITAS SOFTWARE
* 1600 PLYMOUTH STREET, MOUNTAIN VIEW, CA 94043
*/
#ifndef _VOLPFMT_H
#define _VOLPFMT_H
#include <stdio.h>
#if defined(__STDC__)
#include <stdarg.h>
#else /* __STDC__ */
#include <varargs.h>
#endif /* __STDC__ */
#include <locale.h>
#include <unistd.h>
#include <pfmt.h>
#ifndef I18N
#define gettxt egettxt
#endif /* I18N */
#if defined(SOLARIS) || !defined(I18N)
#define setcat volsetcat
#define setlabel volsetlabel
#define pfmt volpfmt
#define vpfmt volvpfmt
/* Function definitions */
#if defined(__STDC__)
const char * volsetcat(char *);
int volsetlabel(char *);
int volpfmt(FILE *, int, const char *, ...);
int volvpfmt(FILE *, int, const char *, va_list);
char *egettxt(const char *, const char *);
#else
CONST char * volsetcat();
int volsetlabel();
int volpfmt();
int volvpfmt();
char *egettxt();
#endif
#endif /* defined (SOLARIS) || !defined (I18N) */
#endif /* _VOLPFMT_H */