// == | Setup | ======================================================================================================= #include // -------------------------------------------------------------------------------------------------------------------- struct NS_OUTPUT { int rv; char message[255]; }; // ==================================================================================================================== // == | Functions | =================================================================================================== int nsOutput(struct NS_OUTPUT *aOutput) { printf( "%s\n", aOutput->message); return aOutput->rv; } // ==================================================================================================================== // == | Main | ======================================================================================================== int main() { struct NS_OUTPUT output = { 0, "Have I reached the party to whom I am speaking?" }; return nsOutput(&output); } // ====================================================================================================================