/build/buildd/ohcount-3.0.0/src/diff.h File Reference
Go to the source code of this file.
Functions |
void | ohcount_calc_diff (const char *from, const char *to, int *added, int *removed) |
Function Documentation
void ohcount_calc_diff |
( |
const char * |
from, |
|
|
const char * |
to, |
|
|
int * |
added, |
|
|
int * |
removed | |
|
) |
| | |
Computes the diff between the lines of two given string buffers. The results are stored in the passed integer pointers. Note: The algorithm discussed mentions a check being performed to find lines matched incorrectly due to hashing; it is not in this implementation.
- Parameters:
-
| from | The diff 'from' buffer. |
| to | The diff 'to' buffer. |
| added | Int pointer the number of lines added result is stored to. |
| removed | Int pointer the number of lines removed result is stored to. |