packages feed

vector-quicksort-0.2: cbits/sort.h

#ifndef SORT_H_
#define SORT_H_ 1

/* Created: 14 June 2023 */

#include <stdint.h>

struct Point {
    double x;
    double y;
    uint64_t id;
};

#endif /* #ifndef SORT_H_ */