⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gr-costs.c

📁 linux下ppp的拨号程序
💻 C
字号:
/* 	This file is part of PPPCOSTS.	Copyright (c) 1996,97 Tillmann Steinbrecher.	May be distributed according to the terms of the GNU	General Public License version 2. No warranty.	Modified by Dimitrios P. Bouras	<dbouras@hol.gr>	Phone costs for the Hellenic Telecom (OTE A.E.), local area prices. */#include "costs.h"char DECIMALS= '0';float INITIAL_COST=0;char CURRENCY_AFTER_COST=1;char CURRENCY[10]=" GDR";float COSTS_PER_UNIT=13.57;       /* 11.5 + 18% VAT */#define GR_PEAK     180#define GR_OFF_PEAK 480int getunitlength(time_t tt){   int unitsecs;   struct tm* ct;   ct=localtime(&tt);   	if(ct->tm_hour < 8 || ct->tm_hour == 23)		unitsecs = GR_OFF_PEAK;	else		unitsecs = GR_PEAK;	return unitsecs;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -