my-solutions/problems/9-palindrome-number/lib.h

4 lines
61 B
C

#pragma once
#include <stdbool.h>
bool isPalindrome(int x);