Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenstubs.c
Go to the documentation of this file.
00001 #include <precomp.h> 00002 #include <math.h> 00003 00004 double CDECL _CIsin(double x); 00005 double CDECL _CIcos(double x); 00006 double CDECL _CItan(double x); 00007 double CDECL _CIsinh(double x); 00008 double CDECL _CIcosh(double x); 00009 double CDECL _CItanh(double x); 00010 double CDECL _CIasin(double x); 00011 double CDECL _CIacos(double x); 00012 double CDECL _CIatan(double x); 00013 double CDECL _CIatan2(double y, double x); 00014 double CDECL _CIexp(double x); 00015 double CDECL _CIlog(double x); 00016 double CDECL _CIlog10(double x); 00017 double CDECL _CIpow(double x, double y); 00018 double CDECL _CIsqrt(double x); 00019 double CDECL _CIfmod(double x, double y); 00020 00021 00022 /* 00023 * @implemented 00024 */ 00025 double CDECL _CIsin(double x) 00026 { 00027 return sin(x); 00028 } 00029 /* 00030 * @implemented 00031 */ 00032 double CDECL _CIcos(double x) 00033 { 00034 return cos(x); 00035 } 00036 /* 00037 * @implemented 00038 */ 00039 double CDECL _CItan(double x) 00040 { 00041 return tan(x); 00042 } 00043 /* 00044 * @implemented 00045 */ 00046 double CDECL _CIsinh(double x) 00047 { 00048 return sinh(x); 00049 } 00050 /* 00051 * @implemented 00052 */ 00053 double CDECL _CIcosh(double x) 00054 { 00055 return cosh(x); 00056 } 00057 /* 00058 * @implemented 00059 */ 00060 double CDECL _CItanh(double x) 00061 { 00062 return tanh(x); 00063 } 00064 /* 00065 * @implemented 00066 */ 00067 double CDECL _CIasin(double x) 00068 { 00069 return asin(x); 00070 } 00071 /* 00072 * @implemented 00073 */ 00074 double CDECL _CIacos(double x) 00075 { 00076 return acos(x); 00077 } 00078 /* 00079 * @implemented 00080 */ 00081 double CDECL _CIatan(double x) 00082 { 00083 return atan(x); 00084 } 00085 /* 00086 * @implemented 00087 */ 00088 double CDECL _CIatan2(double x, double y) 00089 { 00090 return atan2(y, x); 00091 } 00092 /* 00093 * @implemented 00094 */ 00095 double CDECL _CIexp(double x) 00096 { 00097 return exp(x); 00098 } 00099 /* 00100 * @implemented 00101 */ 00102 double CDECL _CIlog(double x) 00103 { 00104 return log(x); 00105 } 00106 /* 00107 * @implemented 00108 */ 00109 double CDECL _CIlog10(double x) 00110 { 00111 return log10(x); 00112 } 00113 /* 00114 * @implemented 00115 */ 00116 double CDECL _CIpow(double x, double y) 00117 { 00118 return pow(x, y); 00119 } 00120 /* 00121 * @implemented 00122 */ 00123 double CDECL _CIsqrt(double x) 00124 { 00125 return sqrt(x); 00126 } 00127 /* 00128 * @implemented 00129 */ 00130 double CDECL _CIfmod(double x, double y) 00131 { 00132 return fmod(x, y); 00133 } 00134 Generated on Fri May 25 2012 04:19:40 for ReactOS by
1.7.6.1
|