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.c | |
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.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/mds-kbdc/raw-data.c b/src/mds-kbdc/raw-data.c index 60c3e17..a1f8ec3 100644 --- a/src/mds-kbdc/raw-data.c +++ b/src/mds-kbdc/raw-data.c @@ -33,11 +33,11 @@ /** - * 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) { this->lines = NULL; this->real_lines = NULL; @@ -48,11 +48,11 @@ void source_code_initialise(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) { free(this->lines), this->lines = NULL; free(this->real_lines), this->real_lines = NULL; @@ -62,11 +62,11 @@ void source_code_destroy(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) { free(this->lines); free(this->real_lines); @@ -316,7 +316,7 @@ static char** line_split(char* content, size_t length) * @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) { char* content = NULL; char* real_content = NULL; |