diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-11-22 12:10:37 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-11-22 12:11:33 +0100 |
commit | d367918916baf9290816aa8657cc78878b68c1ef (patch) | |
tree | dddf55ae25b4d3c00be3b49f86f4c3e32276f6ab /src/mds-kbdc/raw-data.h | |
parent | m work on smplification (diff) | |
download | mds-d367918916baf9290816aa8657cc78878b68c1ef.tar.gz mds-d367918916baf9290816aa8657cc78878b68c1ef.tar.bz2 mds-d367918916baf9290816aa8657cc78878b68c1ef.tar.xz |
Starting on some rework
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | src/mds-kbdc/raw-data.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/mds-kbdc/raw-data.h b/src/mds-kbdc/raw-data.h index 335afc6..4bc7355 100644 --- a/src/mds-kbdc/raw-data.h +++ b/src/mds-kbdc/raw-data.h @@ -25,7 +25,7 @@ /** * Source code by lines, with and without comments */ -typedef struct source_code +typedef struct mds_kbdc_source_code { /** * Source code by lines without comments, @@ -55,29 +55,29 @@ typedef struct source_code */ size_t line_count; -} source_code_t; +} mds_kbdc_source_code_t; /** - * Initialise a `source_code_t*` + * Initialise a `mds_kbdc_source_code_t*` * - * @param this The `source_code_t*` + * @param this The `mds_kbdc_source_code_t*` */ -void source_code_initialise(source_code_t* restrict this); +void mds_kbdc_source_code_initialise(mds_kbdc_source_code_t* restrict this); /** - * Release all data in a `source_code_t*` + * Release all data in a `mds_kbdc_source_code_t*` * - * @param this The `source_code_t*` + * @param this The `mds_kbdc_source_code_t*` */ -void source_code_destroy(source_code_t* restrict this); +void mds_kbdc_source_code_destroy(mds_kbdc_source_code_t* restrict this); /** - * Release all data in a `source_code_t*`, and free it + * Release all data in a `mds_kbdc_source_code_t*`, and free it * - * @param this The `source_code_t*` + * @param this The `mds_kbdc_source_code_t*` */ -void source_code_free(source_code_t* restrict this); +void mds_kbdc_source_code_free(mds_kbdc_source_code_t* restrict this); /** @@ -101,7 +101,7 @@ size_t get_end_of_call(char* restrict content, size_t offset, size_t size) __att * @param source_code Output parameter for read data * @return Zero on success, -1 on error */ -int read_source_lines(const char* restrict pathname, source_code_t* restrict source_code); +int read_source_lines(const char* restrict pathname, mds_kbdc_source_code_t* restrict source_code); #endif |