mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-27 02:14:19 +00:00
Upload
Digital Research
This commit is contained in:
27
ASSEMBLY & COMPILE TOOLS/PLM-2-C 2/plm2c/const.c
Normal file
27
ASSEMBLY & COMPILE TOOLS/PLM-2-C 2/plm2c/const.c
Normal file
@@ -0,0 +1,27 @@
|
||||
|
||||
|
||||
foop(i, j)
|
||||
short i, j;
|
||||
{
|
||||
}
|
||||
|
||||
float foo()
|
||||
{
|
||||
}
|
||||
|
||||
WORD bletch;
|
||||
void *ptr;
|
||||
|
||||
farp("Hi\014\037\253\036");
|
||||
farp(&foo, &bar, &bletch);
|
||||
bletch = foo + foop(1, 2);
|
||||
bletch = foo + foop;
|
||||
ptr = (void *) &foo;
|
||||
ptr = (void *) &bar;
|
||||
ptr = (void *) &bletch;
|
||||
foo();
|
||||
bar();
|
||||
(*ptr)();
|
||||
(*bletch)();
|
||||
(*ptr)(1, 2);
|
||||
|
||||
Reference in New Issue
Block a user