1
0

thesis: More commas

This commit is contained in:
2025-08-24 18:53:15 +02:00
parent 4773bc7515
commit 98484db389
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@@ -298,10 +298,10 @@ Example: \texttt{open(0x1234:"test.txt", 0102:|O\_CREAT|O\_RDWR|, 0644)}.
\subsection{Constants}\label{subsec:retrieving-constants} \subsection{Constants}\label{subsec:retrieving-constants}
For some functions constants are used. For some functions, constants are used.
These constants are typically implemented as C macros (\texttt{\#define}) in the source code. These constants are typically implemented as C macros (\texttt{\#define}) in the source code.
This makes the source code more readable (and portable). This makes the source code more readable (and portable).
Constants are represented as an integer again followed by a colon, this time without any special characters to distinguish them from other types. Constants are represented as an integer, again followed by a colon, this time without any special characters to distinguish them from other types.
Example: \texttt{socket(2:AF\_INET, 1:SOCK\_STREAM, 6)}. Example: \texttt{socket(2:AF\_INET, 1:SOCK\_STREAM, 6)}.