Skip to content

Commit 76d764d

Browse files
added global variable and array documentation
1 parent 5550183 commit 76d764d

File tree

1 file changed

+15
-2
lines changed
  • NUB_Admission_Costing_Calculator/docs

1 file changed

+15
-2
lines changed

NUB_Admission_Costing_Calculator/docs/test.txt

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-------------------------------------------------------test.h-------------------------------------------------------
1+
------------------------------------------------------------test.h------------------------------------------------------------
22

33
You should know:
44
- D_ prefix is used for Diploma Holder functions.
@@ -63,4 +63,17 @@ NOTE: This function is similar to `Display` but uses a different format file ("f
6363
It ensures safe data processing and storage before passing it to the callback, avoiding data
6464
corruption or loss during processing.
6565

66-
--------------------------------------------------------------------------------------------------------------------
66+
------------------------------------------------------------------------------------------------------------------------------
67+
68+
------------------------------------------------------------test.c------------------------------------------------------------
69+
70+
int waiver, TC, year, semester, credit
71+
- These global variables are used throughout the program to store and manipulate data related to academic programs.
72+
73+
#define BUFFER_SIZE 1024
74+
- Defines a global macro for the buffer size used when reading from files. It sets the size of the buffer to 1024 bytes.
75+
76+
char TEMP_FILE_NAME[] = "formats/temp.txt";
77+
- Declares a global array of characters that stores the name of the temporary file used during output generation.
78+
79+
------------------------------------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)