Operating System
step_3
user
user.c
Go to the documentation of this file.
1
5
#include "../include/utilities.h"
6
int
sum
(
int
end) {
7
int
sum
= 0;
8
for
(
int
i = 0; i < end; ++i) {
9
sum
+= i;
10
}
11
return
sum
;
12
}
13
void
jumpToUser
() {
14
putln
(
"if you see me, i will be very happy"
);
15
}
jumpToUser
void jumpToUser()
Definition:
user.c:13
putln
static int16_t putln(char const *str)
Definition:
stdio.h:149
sum
int sum(int end)
Definition:
user.c:6
Generated by
1.8.15