summaryrefslogtreecommitdiff
path: root/apps/plugins/euroconverter.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/euroconverter.c')
-rw-r--r--apps/plugins/euroconverter.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/apps/plugins/euroconverter.c b/apps/plugins/euroconverter.c
index a75a5f055e..f98fc27db8 100644
--- a/apps/plugins/euroconverter.c
+++ b/apps/plugins/euroconverter.c
@@ -60,7 +60,7 @@ static int currency[12]={
60 4033990, /*BEF Belgium*/ 60 4033990, /*BEF Belgium*/
61 16638600, /*ESP Spain*/ 61 16638600, /*ESP Spain*/
62 594573, /*FIM Finland*/ 62 594573, /*FIM Finland*/
63 78756, /*IEP Irland*/ 63 78756, /*IEP Ireland*/
64 193627000, /*ITL Italy*/ 64 193627000, /*ITL Italy*/
65 4033990, /*LUF Luxemburg*/ 65 4033990, /*LUF Luxemburg*/
66 220371, /*NLG Netherlands*/ 66 220371, /*NLG Netherlands*/
@@ -76,7 +76,7 @@ static int nb_digit[12]={
76 2, /*BEF Belgium*/ 76 2, /*BEF Belgium*/
77 0, /*ESP Spain*/ 77 0, /*ESP Spain*/
78 2, /*FIM Finland*/ 78 2, /*FIM Finland*/
79 2, /*IEP Irland*/ 79 2, /*IEP Ireland*/
80 0, /*ITL Italy*/ 80 0, /*ITL Italy*/
81 2, /*LUF Luxemburg*/ 81 2, /*LUF Luxemburg*/
82 2, /*NLG Netherlands*/ 82 2, /*NLG Netherlands*/
@@ -86,15 +86,15 @@ static int nb_digit[12]={
86 86
87/* max euro to have home currency */ 87/* max euro to have home currency */
88static long long max_euro[12]={ 88static long long max_euro[12]={
89 99999999000LL, /*FRF France 999 999.99 */ 89 99999999000LL, /*FRF France 999 999.99 */
90 99999999000LL, /*DEM Germany 999 999.99 */ 90 99999999000LL, /*DEM Germany 999 999.99 */
91 99999999000LL, /*ATS Austria 999 999.99 */ 91 99999999000LL, /*ATS Austria 999 999.99 */
92 99999999000LL, /*BEF Belgium 999 999.99 */ 92 99999999000LL, /*BEF Belgium 999 999.99 */
93 99999999000LL, /*ESP Spain 99 999 999 */ 93 99999999000LL, /*ESP Spain 99 999 999 */
94 99999999000LL, /*FIM Finland 999 999.99 */ 94 99999999000LL, /*FIM Finland 999 999.99 */
95 99999999000LL, /*IEP Irland 999 999.99 */ 95 99999999000LL, /*IEP Ireland 999 999.99 */
96 51645690000LL, /*ITL Italy 999 999 999 */ 96 51645690000LL, /*ITL Italy 999 999 999 */
97 99999999000LL, /*LUF Luxemburg 999 999.99 */ 97 99999999000LL, /*LUF Luxemburg 999 999.99 */
98 99999999000LL, /*NLG Netherlands 999 999.99 */ 98 99999999000LL, /*NLG Netherlands 999 999.99 */
99 99999999000LL, /*PTE Portugal 99 999 999 */ 99 99999999000LL, /*PTE Portugal 99 999 999 */
100 29347028000LL /*GRD Greece 99 999 999 */ 100 29347028000LL /*GRD Greece 99 999 999 */
@@ -107,14 +107,14 @@ static long long max_curr[12]={
107 99999999000LL, /*DEM Germany 511291.88 */ 107 99999999000LL, /*DEM Germany 511291.88 */
108 99999999000LL, /*ATS Austria 72672.83 */ 108 99999999000LL, /*ATS Austria 72672.83 */
109 99999999000LL, /*BEF Belgium 24789.35 */ 109 99999999000LL, /*BEF Belgium 24789.35 */
110 92233720300000LL, /*ESP Spain 5543358.23 */ 110 92233720300000LL,/*ESP Spain 5543358.23 */
111 99999999000LL, /*FIM Finland 168187.92 */ 111 99999999000LL, /*FIM Finland 168187.92 */
112 9999999900LL, /*IEP Irland 1269744.51 exact value=1269738.07 */ 112 9999999900LL, /*IEP Ireland 1269744.51 exact value=1269738.07 */
113 92233720300000LL,/*ITL Italy 476347.41 */ 113 92233720300000LL,/*ITL Italy 476347.41 */
114 99999999000LL, /*LUF Luxemburg 24789.35 */ 114 99999999000LL, /*LUF Luxemburg 24789.35 */
115 99999999000LL, /*NLG Netherlands 453780.21 */ 115 99999999000LL, /*NLG Netherlands 453780.21 */
116 92233720300000LL, /*PTE Portugal 4600598.57 */ 116 92233720300000LL,/*PTE Portugal 4600598.57 */
117 92233720300000LL /*GRD Greece 2706777.69 */ 117 92233720300000LL /*GRD Greece 2706777.69 */
118 }; 118 };
119 119
120static unsigned char *abbrev_str[12] = { 120static unsigned char *abbrev_str[12] = {
@@ -124,7 +124,7 @@ static unsigned char *abbrev_str[12] = {
124 "...BEF...", /*Belgium*/ 124 "...BEF...", /*Belgium*/
125 "...ESP...", /*Spain*/ 125 "...ESP...", /*Spain*/
126 "...FIM...", /*Finland*/ 126 "...FIM...", /*Finland*/
127 "...IEP...", /*Irland*/ 127 "...IEP...", /*Ireland*/
128 "...ITL...", /*Italy*/ 128 "...ITL...", /*Italy*/
129 "...LUF...", /*Luxemburg*/ 129 "...LUF...", /*Luxemburg*/
130 "...NLG...", /*Netherlands*/ 130 "...NLG...", /*Netherlands*/