[SPCA] Fix more typos

This commit is contained in:
2026-01-28 08:55:58 +01:00
parent 5eda12a69b
commit ed1a187bfc
4 changed files with 7 additions and 7 deletions

View File

@@ -83,8 +83,6 @@ in that they are passed by value and not by reference.
You can of course pass it also by reference (like any other data type) by setting the argument to type \texttt{struct mystruct * name} and then calling the function using
\texttt{func(\&test)} assuming \texttt{test} is the name of your struct
\newpage
\content{Typedef} To define a custom type using \texttt{typedef <type it represents> <name of the new type>}.
You may also use \texttt{typedef} on structs using \texttt{typedef struct <struct tag> <name of the new alias>},