Sha256: bd33d7bf0d67209b7eb8c0328cdeb50f982ba385070f791db8a0cf9f4c7dc0d5
Contents?: true
Size: 250 Bytes
Versions: 119
Compression:
Stored size: 250 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
119 entries across 119 versions & 1 rubygems