insrcdata 0.2.0

Embed static data as source code
Documentation
//
//  colobject.h
//  testfull
//
//  Created by Sébastien Keim on 02/07/2023.
//

#ifndef colobject_h
#define colobject_h


typedef void (transformer_t)(char*);

extern void make_capitalize(char*);
extern void make_upper(char*);
extern void make_lower(char*);


typedef struct {
      float x;
      float y;
} point_t;
extern const point_t POINT_ZERO;
extern const point_t POINT_ONE;



#endif /* colobject_h */