Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sources/checkpoint.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
#] License :
#[ Includes :
*/

/* LCOV_EXCL_START */
#include "form3.h"

#include <errno.h>
Expand Down Expand Up @@ -3232,7 +3232,7 @@ void DoCheckpoint(int moduletype)
}/*if(PF.me != MASTER)*/
#endif
}

/* LCOV_EXCL_STOP */
/*
#] DoCheckpoint :
*/
12 changes: 6 additions & 6 deletions sources/compcomm.c
Original file line number Diff line number Diff line change
Expand Up @@ -3920,7 +3920,7 @@ int CoAntiBracket(UBYTE *inp)
Syntax:
MultiBracket:{A|B} bracketinfo:...:{A|B} bracketinfo;
*/

/* LCOV_EXCL_START */
int CoMultiBracket(UBYTE *inp)
{
GETIDENTITY
Expand Down Expand Up @@ -4027,7 +4027,7 @@ int CoMultiBracket(UBYTE *inp)
AT.bracketindexflag = 0;
return(error);
}

/* LCOV_EXCL_STOP */
/*
#] CoMultiBracket :
#[ CountComp :
Expand Down Expand Up @@ -7404,7 +7404,7 @@ int CoEndSwitch(UBYTE *s)
#] CoEndSwitch :
#[ CoSetUserFlag :
*/

/* LCOV_EXCL_START */
int CoSetUserFlag(UBYTE *s)
{
int error = 0;
Expand All @@ -7427,12 +7427,12 @@ int CoSetUserFlag(UBYTE *s)
}
return(error);
}

/* LCOV_EXCL_STOP */
/*
#] CoSetUserFlag :
#[ CoClearUserFlag :
*/

/* LCOV_EXCL_START */
int CoClearUserFlag(UBYTE *s)
{
int error = 0;
Expand All @@ -7455,7 +7455,7 @@ int CoClearUserFlag(UBYTE *s)
}
return(error);
}

/* LCOV_EXCL_STOP */
/*
#] CoClearUserFlag :
#[ CoCreateAllLoops :
Expand Down
4 changes: 3 additions & 1 deletion sources/diagrams.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/*
#[ Includes : diagrams.c
*/

/* LCOV_EXCL_START */
#include "form3.h"

static WORD one = 1;
Expand Down Expand Up @@ -661,3 +661,5 @@ MesPrint("partitions = %a",2*nvert,partitions);
/*
#] DoShattering :
*/

/* LCOV_EXCL_STOP */
32 changes: 16 additions & 16 deletions sources/pre.c
Original file line number Diff line number Diff line change
Expand Up @@ -7308,7 +7308,7 @@ int DoTimeOutAfter(UBYTE *s)
Names of preprocessor variables are excluded!
Names of built in objects are excluded! (like sum_, d_ etc.)
*/

/* LCOV_EXCL_START */
int DoNamespace(UBYTE *s)
{
UBYTE *s1, *s2, c;
Expand Down Expand Up @@ -7351,12 +7351,12 @@ int DoNamespace(UBYTE *s)
*s1 = c;
return(0);
}

/* LCOV_EXCL_STOP */
/*
#] DoNamespace :
#[ DoEndNamespace :
*/

/* LCOV_EXCL_START */
int DoEndNamespace(UBYTE *s)
{
NAMESPACE *namespace;
Expand All @@ -7374,12 +7374,12 @@ int DoEndNamespace(UBYTE *s)
M_free(namespace,"namespace");
return(0);
}

/* LCOV_EXCL_STOP */
/*
#] DoEndNamespace :
#[ SkipName :
*/

/* LCOV_EXCL_START */
UBYTE *SkipName(UBYTE *s)
{
UBYTE *t = s, *s1, c;
Expand Down Expand Up @@ -7466,7 +7466,7 @@ UBYTE *SkipName(UBYTE *s)
}
return(s);
}

/* LCOV_EXCL_STOP */
/*
#] SkipName :
#[ ConstructName :
Expand All @@ -7479,7 +7479,7 @@ UBYTE *SkipName(UBYTE *s)

type tells what kind of name we look for
*/

/* LCOV_EXCL_START */
UBYTE *ConstructName(UBYTE *s,UBYTE type)
{
int len;
Expand Down Expand Up @@ -7551,7 +7551,7 @@ UBYTE *ConstructName(UBYTE *s,UBYTE type)
}
return(AP.fullname);
}

/* LCOV_EXCL_STOP */
/*
#] ConstructName :
#[ DoUse :
Expand All @@ -7571,7 +7571,7 @@ UBYTE *ConstructName(UBYTE *s,UBYTE type)
The names are stored in a balanced tree. Each namespace may have
its own tree. The toplevel (no namespace) does not allow a #use.
*/

/* LCOV_EXCL_START */
int DoUse(UBYTE *s)
{
NAMESPACE *namespace;
Expand Down Expand Up @@ -7603,7 +7603,7 @@ int DoUse(UBYTE *s)
}
return(0);
}

/* LCOV_EXCL_STOP */
/*
#] DoUse :
#[ UserFlags :
Expand All @@ -7619,7 +7619,7 @@ int DoUse(UBYTE *s)
#SetFlag
par == 0: Clear, par == 1: Set.
*/

/* LCOV_EXCL_START */
int UserFlags(UBYTE *s,int par)
{
int mask = 0, error = 0, i;
Expand Down Expand Up @@ -7721,27 +7721,27 @@ int UserFlags(UBYTE *s,int par)
MesPrint("@Illegal name in #...Flag instruction.");
return(1);
}

/* LCOV_EXCL_STOP */
/*
#] UserFlags :
#[ DoClearUserFlag :
*/

/* LCOV_EXCL_START */
int DoClearUserFlag(UBYTE *s)
{
return(UserFlags(s,0));
}

/* LCOV_EXCL_STOP */
/*
#] DoClearUserFlag :
#[ DoSetUserFlag :
*/

/* LCOV_EXCL_START */
int DoSetUserFlag(UBYTE *s)
{
return(UserFlags(s,1));
}

/* LCOV_EXCL_STOP */
/*
#] DoSetUserFlag :
#[ DoStartFloat :
Expand Down
Loading