/usr/lib/emboss/include/embgroup.h is in emboss-lib 6.3.1-6ubuntu3.
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | #ifdef __cplusplus
extern "C"
{
#endif
#ifndef embgroup_h
#define embgroup_h
/* @data EmbPGroupProg ********************************************************
**
** Hold details of programs (names and documentation) and the package
** they belong to.
**
**
** @alias EmbOGroupProg
** @alias EmbSGroupProg
**
** @attr name [AjPStr] Name of group or of program
** @attr doc [AjPStr] Documentation for this program
** @attr keywords [AjPStr] keywords for this program
** @attr package [AjPStr] EMBASSY package, empty for main package
** @attr groups [AjPList] List of group(s) this program belongs to.
** @@
******************************************************************************/
typedef struct EmbSGroupProg {
AjPStr name;
AjPStr doc;
AjPStr keywords;
AjPStr package;
AjPList groups;
} EmbOGroupProg;
#define EmbPGroupProg EmbOGroupProg*
/* @data EmbPGroupTop *********************************************************
**
** This serves as both a node in a list of names of groups which each hold
** a list of details of programs (names and documentation) and also
** it is a node in a list of the details of programs (names and documentation).
**
** Using the same structure for both is a bit confusing, but it simplifies
** some of the routines which search and output the lists of gnodes of
** groups and program data.
**
** GROUP LIST nodes point to PROGRAM LISTS
** ---------- -------------
**
** group gnode -> program gnode - program gnode - program gnode - etc.
** |
** group gnode -> program gnode - program gnode - program gnode - etc.
** |
** etc.
**
**
** The layout of the 'alpha' list of alphabetic listing of applications is
** a bit different - instead of applications being grouped, as in 'glist'
** above, the applications all come under one major group and each
** application holds a list of the groups it belongs to:
**
** ALPHA LIST
** ----------
**
** group gnode -> program gnode -> group gnode - group gnode - etc.
** |
** program gnode -> group gnode - group gnode - group gnode - etc.
** |
** program gnode -> group gnode - group gnode - group gnode - etc.
** |
** program gnode -> group gnode - group gnode - group gnode - etc.
** |
** program gnode -> group gnode - group gnode - group gnode - etc.
** |
** etc.
**
**
** @alias EmbOGroup
** @alias EmbSGroup
**
** @attr name [AjPStr] name of group or of program
** @attr doc [AjPStr] documentation for this program (used by list of programs)
** @attr progs [AjPList] list of programs in this group (used by groups list)
** @@
******************************************************************************/
typedef struct EmbSGroupTop {
AjPStr name;
AjPStr doc;
AjPList progs;
} EmbOGroupTop;
#define EmbPGroupTop EmbOGroupTop*
/*
** Prototype definitions
*/
ajint embGrpCompareTwoGnodes(const void * a, const void * b);
ajint embGrpCompareTwoPnodes(const void * a, const void * b);
void embGrpExit(void);
AjBool embGrpGetEmbassy(const AjPStr appname, AjPStr* embassyname);
void embGrpGetProgGroups(AjPList glist, AjPList alpha,
char * const env[],
AjBool emboss, AjBool embassy,
const AjPStr embassyname,
AjBool explode, AjBool colon,
AjBool gui);
void embGrpGroupsListDel(AjPList *groupslist);
void embGrpProgsListDel(AjPList *progslist);
void embGrpKeySearchProgs(AjPList newlist, const AjPList glist,
const AjPStr key, AjBool all);
void embGrpKeySearchSeeAlso(AjPList newlist,
AjPList *appgroups, AjPStr* package,
const AjPList alpha, const AjPList glist,
const AjPStr key);
EmbPGroupTop embGrpMakeNewGnode(const AjPStr name);
EmbPGroupProg embGrpMakeNewPnode(const AjPStr name, const AjPStr doc,
const AjPStr keywords, const AjPStr package);
void embGrpOutputGroupsList(AjPFile outfile,
const AjPList groupslist,
AjBool showprogs, AjBool html,
AjBool showkey,
const AjPStr package);
void embGrpOutputProgsList(AjPFile outfile, const AjPList progslist,
AjBool html, AjBool showkey,
const AjPStr package);
void embGrpSortGroupsList(AjPList groupslist);
void embGrpSortProgsList(AjPList progslist);
void embGrpGroupMakeUnique(AjPList list);
void embGrpProgsMakeUnique(AjPList list);
/*
** End of prototype definitions
*/
#endif
#ifdef __cplusplus
}
#endif
|