9 lines
128 B
C
9 lines
128 B
C
|
#ifndef ARMSTRONG_NUMBERS_H
|
||
|
#define ARMSTRONG_NUMBERS_H
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
bool is_armstrong_number(int candidate);
|
||
|
|
||
|
#endif
|