owlps/owlps-ardrone/owlps-drone.h

12 lines
152 B
C

#include <stdio.h>
#define ALGO_STRLEN 15
typedef struct result result;
struct result
{
char algo[ALGO_STRLEN];
float x;
float y;
float z;
};