Sha256: 35db17de746887a9943f68f814316c5e7e53a916a43b4c49c80f57ccb40b2f1c
Contents?: true
Size: 256 Bytes
Versions: 14
Compression:
Stored size: 256 Bytes
Contents
#ifndef TRIANGLE_H #define TRIANGLE_H #include <stdbool.h> typedef struct { double a; double b; double c; } triangle_t; bool is_equilateral(triangle_t * input); bool is_isosceles(triangle_t * input); bool is_scalene(triangle_t * input); #endif
Version data entries
14 entries across 14 versions & 1 rubygems