/* hello_s.c server code for the example application */ #include #include #include #include "hello.h" char **helloworld_1(CLIENT *clnt) { static char r[32]; strcpy(r,"hello world!"); return ((char **) &r); }