source: git/machine_learning/testml.c @ 7fb0101

spielwiese
Last change on this file since 7fb0101 was 7fb0101, checked in by Murray Heymann <heymann.murray@…>, 5 years ago
Begin writing c functions to interact with python3
  • Property mode set to 100644
File size: 243 bytes
Line 
1#include <stdio.h>
2#include "mlpredict.h"
3
4int main(int argc, char *argv[])
5{
6        int i = 0;
7        if (argc != 1) {
8                printf("Usage: %s\n", argv[0]);
9                return 1;
10        }
11        i = ml_initialise();
12       
13        printf("Returnvalue for initialise: %d\n", i);
14
15        return 0;
16}
Note: See TracBrowser for help on using the repository browser.