Newer
Older
Scratch / aibot / modules / example.c
@Christopher W. Olsen Christopher W. Olsen on 25 Oct 2019 192 bytes Scratch
#include <stdio.h>

char *Description(char *tmp) {
  char description[512];
  sprintf(description,"This is an example modules and this was passwd to it: [%s]",tmp);
  return(description);
  }