Return true if there is a breakpoint in the specified line. */
| 2097 | |
| 2098 | /* Return true if there is a breakpoint in the specified line. */ |
| 2099 | int ldbIsBreakpoint(int line) { |
| 2100 | int j; |
| 2101 | |
| 2102 | for (j = 0; j < ldb.bpcount; j++) |
| 2103 | if (ldb.bp[j] == line) return 1; |
| 2104 | return 0; |
| 2105 | } |
| 2106 | |
| 2107 | /* Add the specified breakpoint. Ignore it if we already reached the max. |
| 2108 | * Returns 1 if the breakpoint was added (or was already set). 0 if there is |
no outgoing calls
no test coverage detected