Skip to content

Commit 354f8c9

Browse files
author
Mark R. Tuttle
committed
Make satabs user manual a first-class page
1 parent de8dc14 commit 354f8c9

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

doc/satabs-user-manual.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
\ingroup module_hidden
2-
\page other_documentation Other Documentation
3-
4-
\section satabs SATABS
1+
\page satabs SATABS
52

63
We document two programs that try to achieve formal guarantees of the
74
absence of specific problems: CBMC and SATABS. The algorithms
@@ -607,13 +604,13 @@ and the function `getConfig` in `lib_aeon.c`:
607604
int getConfig(char settings[MAX_SETTINGS][MAX_LEN])
608605
{
609606
char home[MAX_LEN];
610-
FILE *fp; /* .rc file handler */
611-
int numSet = 0; /* number of settings */
607+
FILE *fp; /* .rc file handler */
608+
int numSet = 0; /* number of settings */
612609

613-
strcpy(home, getenv("HOME")); /* get home path */
614-
strcat(home, "/.aeonrc"); /* full path to rc file */
610+
strcpy(home, getenv("HOME")); /* get home path */
611+
strcat(home, "/.aeonrc"); /* full path to rc file */
615612
fp = fopen(home, "r");
616-
if (fp == NULL) return -1; /* no cfg - ERROR */
613+
if (fp == NULL) return -1; /* no cfg - ERROR */
617614
while (fgets(settings[numSet], MAX_LEN-1, fp)
618615
&& (numSet < MAX_SETTINGS)) numSet++;
619616
fclose(fp);

0 commit comments

Comments
 (0)