aboutsummaryrefslogtreecommitdiff
path: root/Linux_C_12/Clean.h
diff options
context:
space:
mode:
Diffstat (limited to 'Linux_C_12/Clean.h')
-rw-r--r--Linux_C_12/Clean.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Linux_C_12/Clean.h b/Linux_C_12/Clean.h
index 26513a0..f422e81 100644
--- a/Linux_C_12/Clean.h
+++ b/Linux_C_12/Clean.h
@@ -4,11 +4,11 @@
typedef struct clean_string *CleanString;
/* a string in Clean is:
- struct clean_string {
- int clean_string_length;
- char clean_string_characters[clean_string_length];
- };
- The string does not end with a '\0' !
+ struct clean_string {
+ int clean_string_length;
+ char clean_string_characters[clean_string_length];
+ };
+ The string does not end with a '\0' !
*/
/* CleanStringLength(clean_string) returns length of the clean_string in characters */