mirror of
https://github.com/RobTillaart/Arduino.git
synced 2024-10-03 18:09:02 -04:00
38 lines
725 B
C++
38 lines
725 B
C++
#pragma once
|
|
//
|
|
// FILE: palindrome.h
|
|
// AUTHOR: Rob Tillaart
|
|
// VERSION: 0.1.2
|
|
// PURPOSE: Arduino library to do palindrome experiments.
|
|
// URL: https://github.com/RobTillaart/palindrome
|
|
//
|
|
|
|
|
|
#include "Arduino.h"
|
|
|
|
#define PALINDROME_LIB_VERSION (F("0.1.2"))
|
|
|
|
|
|
class palindrome
|
|
{
|
|
public:
|
|
palindrome();
|
|
|
|
bool isPalindrome(const char * str);
|
|
|
|
int findPalindrome(const char * str, int & position, int & length);
|
|
int findEvenPalindrome(const char * str, int & position, int & length);
|
|
int findOddPalindrome(const char * str, int & position, int & length);
|
|
|
|
int palindromeCount(const char * str);
|
|
float palindromePercentage(const char * str);
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
// -- END OF FILE --
|
|
|
|
|