/usr/include/rms.h is in libdnet-dev 2.65.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | /*
rms.h.h from librms
Copyright (C) 1999 Christine Caulfield christine.caulfield@googlemail.com
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// Get the definitions of RABs and FABs
#include "fabdef.h"
#include "rabdef.h"
typedef void * RMSHANDLE;
#ifdef __cplusplus
extern "C" {
#endif
RMSHANDLE rms_open(char *name, int mode, struct FAB *);
int rms_close(RMSHANDLE h);
int rms_read(RMSHANDLE h, char *buf, int maxlen, struct RAB*);
int rms_write(RMSHANDLE h, char *buf, int maxlen, struct RAB*);
int rms_update(RMSHANDLE h, char *buf, int maxlen, struct RAB*);
int rms_find(RMSHANDLE h, struct RAB *);
int rms_delete(RMSHANDLE h, struct RAB *);
int rms_rewind(RMSHANDLE h, struct RAB *);
int rms_truncate(RMSHANDLE h, struct RAB *);
char *rms_lasterror(RMSHANDLE h);
int rms_lasterrorcode(RMSHANDLE h);
char *rms_openerror(void);
RMSHANDLE rms_t_open(char *name, int mode, char *options, ...);
int rms_t_close(RMSHANDLE h);
int rms_t_read(RMSHANDLE h, char *buf, int maxlen, char *options, ...);
int rms_t_write(RMSHANDLE h, char *buf, int maxlen, char *options, ...);
int rms_t_update(RMSHANDLE h, char *buf, int maxlen, char *options, ...);
int rms_t_find(RMSHANDLE h, char *options, ...);
int rms_t_delete(RMSHANDLE h, char *options, ...);
int rms_t_rewind(RMSHANDLE h, char *options, ...);
int rms_t_truncate(RMSHANDLE h, char *options, ...);
#ifdef __cplusplus
}
#endif
|