Example #1
0
void PrintUniqueRows(int mat[row][col]){

int i;

TNode* root=NULL;

for(i=0;i<row;i++){
if(Insert(&root,mat,i,0)){
PrintUtil(mat[i]);
}
}



}
   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "PrintUtil.h"
#include <Arduino.h>
#include <stdarg.h>

void PrintUtil::prints(const char * format, ...) {
        char tmp[128]; // resulting string limited to 128 chars
        va_list args;
        va_start (args, format );
        vsnprintf(tmp, 128, format, args);
        va_end (args);
        Serial.print(tmp);
};



PrintUtil PrintUtl = PrintUtil();