#include "clib.h"
int AsmFunction(int a, char b, int c);
void main(void)
{
printString("Hello, world!\n");
AsmFunction(10, 35, 3);
}
The function AsmFunction() is written in assembly and is contained in
another source file. Notice the line
"int AsmFunction(int a, char b, int c);" at
the beginning of this code. This type of statement is often called a function prototype.
Answer the following questions: