Changeset 1729
- Timestamp:
- 07/05/10 01:43:54 (14 years ago)
- Files:
-
- branches/phobos-1.x/phobos/std/c/locale.d (modified) (1 diff)
- branches/phobos-1.x/phobos/win32.mak (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/phobos-1.x/phobos/std/c/locale.d
r295 r1729 63 63 /** The number of fractional digits (those after the decimal-point) to 64 64 * be displayed in an internationally formatted monetary quantity. 65 65 **/ 66 66 char int_frac_digits; 67 67 68 68 /** The number of fractional digits (those after the decimal-point) to 69 69 * be displayed in a locally formatted monetary quantity. 70 70 **/ 71 71 char frac_digits; 72 72 73 /// 1 if currency_symbol precedes a positive value, 0 if succeeds. 74 char p_cs_precedes; 75 76 /// 1 if a space separates currency_symbol from a positive value. 77 char p_sep_by_space; 78 79 /// 1 if currency_symbol precedes a negative value, 0 if succeeds. 80 char n_cs_precedes; 73 /// 1 if currency_symbol precedes a positive value, 0 if succeeds. 74 char p_cs_precedes; 81 75 82 /// 1 if a space separates currency_symbol from a negative value. 83 char n_sep_by_space; 76 /// 1 if a space separates currency_symbol from a positive value. 77 char p_sep_by_space; 78 79 /// 1 if currency_symbol precedes a negative value, 0 if succeeds. 80 char n_cs_precedes; 81 82 /// 1 if a space separates currency_symbol from a negative value. 83 char n_sep_by_space; 84 84 85 85 /* Positive and negative sign positions: 86 86 0 Parentheses surround the quantity and currency_symbol. 87 87 1 The sign string precedes the quantity and currency_symbol. 88 88 2 The sign string follows the quantity and currency_symbol. 89 89 3 The sign string immediately precedes the currency_symbol. 90 90 4 The sign string immediately follows the currency_symbol. */ 91 91 char p_sign_posn; 92 92 char n_sign_posn; 93 93 branches/phobos-1.x/phobos/win32.mak
r1701 r1729 934 934 clean: 935 935 del $(OBJS) 936 936 del $(DOCS) 937 937 del phobos.json 938 938 del phobos.lib 939 939 940 940 cleanhtml: 941 941 del $(DOCS) 942 942 943 943 detab: 944 detab $(SRCS) $(SRC_INT) 944 detab $(SRC) \ 945 $(SRC_STD) $(SRC_STD_C) $(SRC_TI) $(SRC_INT) $(SRC_STD_WIN) \ 946 $(SRC_STDLINUX) $(SRC_ETC) $(SRC_ETC_C) $(SRC_ZLIB) $(SRC_GC) 945 947 946 948 install: 947 949 $(CP) phobos.lib gcstub.obj $(DIR)\windows\lib 948 950 $(CP) $(MAKEFILES) phoboslicense.txt minit.obj std.ddoc $(DIR)\src\phobos 949 951 $(CP) $(SRC) $(DIR)\src\phobos 950 952 $(CP) $(SRC_STD) $(DIR)\src\phobos\std 951 953 $(CP) $(SRC_STD_C) $(DIR)\src\phobos\std\c 952 954 $(CP) $(SRC_TI) $(DIR)\src\phobos\std\typeinfo 953 955 $(CP) $(SRC_INT) $(DIR)\src\phobos\internal 954 956 $(CP) $(SRC_STD_WIN) $(DIR)\src\phobos\std\windows
