bp.c File Reference
Parser for breakpoint files.
More...
#include "log.h"
#include "format.h"
#include "linestream.h"
#include "bp.h"
Go to the source code of this file.
|
Functions |
void | bp_deInit (void) |
| Deinitialize the breakpoint parser.
|
Array | bp_getBreakPoints (void) |
| Parse the breakpoint data and returns an Array of breakpoints.
|
void | bp_init (char *fileName) |
| Initialize the parser of the breakpoint data.
|
Detailed Description
Parser for breakpoint files.
- Author:
- Lukas Habegger (lukas.habegger@yale.edu)
Definition in file bp.c.
Function Documentation
Deinitialize the breakpoint parser.
- Precondition:
- The module has been initialized using bp_Init().
Definition at line 28 of file bp.c.
Array bp_getBreakPoints |
( |
void |
|
) |
|
Parse the breakpoint data and returns an Array of breakpoints.
- Precondition:
- The module has been initialized using bp_Init().
Definition at line 38 of file bp.c.
void bp_init |
( |
char * |
fileName |
) |
|
Initialize the parser of the breakpoint data.
- Parameters:
-
[in] | fileName | name of the breakpoint file. Use '-' for STDIN. |
Definition at line 18 of file bp.c.