mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-17 02:25:09 +00:00
a3b7905df6
* Add new text object to capitalize the first character of each word * Fix for issue https://github.com/brndnmtthws/conky/issues/46 * Fix for issue https://github.com/brndnmtthws/conky/issues/35 * Fix for issue https://github.com/brndnmtthws/conky/issues/35 * Fix for https://github.com/brndnmtthws/conky/issues/206 * Fix for https://github.com/brndnmtthws/conky/issues/474 * Add new "temp2" variable to print the temperature in floating number * Make the "temp2" variable static and add some explanation above it * openbsd.cc: Add one more formal parameter to "temp_print()" * extras/convert.lua: change url to wiki page (#554)
34 lines
1.0 KiB
C++
34 lines
1.0 KiB
C++
/*
|
|
*
|
|
* temphelper.h: aid in converting temperature units
|
|
*
|
|
* Copyright (C) 2008 Phil Sutter <Phil@nwl.cc>
|
|
*
|
|
* This library 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 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This library 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 library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
|
|
* USA.
|
|
*
|
|
*/
|
|
|
|
#ifndef TEMPHELPER_H
|
|
#define TEMPHELPER_H
|
|
|
|
#include <cstddef>
|
|
|
|
enum TEMP_UNIT { TEMP_CELSIUS, TEMP_FAHRENHEIT };
|
|
|
|
int temp_print(char *, std::size_t, double, enum TEMP_UNIT, int);
|
|
|
|
#endif /* TEMPHELPER_H */
|