github.com/giovannyortegon/go@v0.0.0-20220115155912-8890063f5bdd/src/MasterGO/Chap02-GoInternals/callC.c (about)

     1  #include<stdio.h>
     2  #include"callC.h"
     3  
     4  void cHello()
     5  {
     6  	printf("Hello from C!\n");
     7  }
     8  
     9  void printMessage(char * message)
    10  {
    11  	printf("Go send me %s\n", message);
    12  }