summary refs log tree commit diff stats
path: root/c/armstrong-numbers/src/armstrong_numbers.h
blob: f36856044b97bf82302bec01d8eddf1d2f9390d1 (plain) (blame)
1
2
3
4
5
6
7
8
#ifndef ARMSTRONG_NUMBERS
#define ARMSTRONG_NUMBERS

#include <stdbool.h>

bool is_armstrong_number(unsigned int);

#endif