mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Initial revision
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
392296c12d
commit
3db12e8b23
225 changed files with 75935 additions and 0 deletions
81
x68/fconvert.c
Normal file
81
x68/fconvert.c
Normal file
|
|
@ -0,0 +1,81 @@
|
|||
/*
|
||||
* PROJECT C Library, X68000 PROGRAMMING INTERFACE DEFINITION
|
||||
* --------------------------------------------------------------------
|
||||
* This file is written by the Project C Library Group, and completely
|
||||
* in public domain. You can freely use, copy, modify, and redistribute
|
||||
* the whole contents, without this notice.
|
||||
* --------------------------------------------------------------------
|
||||
* $Id$
|
||||
*/
|
||||
/* changed 1997.2.3 by K.Okabe */
|
||||
|
||||
/* System headers */
|
||||
#include <stdlib.h>
|
||||
#include <sys/xstdlib.h>
|
||||
|
||||
/* Functions */
|
||||
char *fconvert (double x, int ndigit, int *decpt, int *sign, char *buffer)
|
||||
{
|
||||
int pos, n;
|
||||
char *src, *dst;
|
||||
char string[24];
|
||||
int figup;
|
||||
|
||||
/* 18桁の文字列に変換 */
|
||||
_dtos18 (x, decpt, sign, string);
|
||||
|
||||
/* コピー元アドレスを設定 */
|
||||
src = string;
|
||||
|
||||
/* コピー先アドレスを設定 */
|
||||
dst = buffer;
|
||||
|
||||
/* 小数点位置を得る */
|
||||
pos = *decpt;
|
||||
|
||||
/* 小数点位置が負なら */
|
||||
if (pos < 0) {
|
||||
|
||||
/* 埋める桁数を計算 */
|
||||
n = min (-pos, ndigit);
|
||||
|
||||
/* 先頭を0で埋める */
|
||||
while (n-- > 0)
|
||||
*dst++ = '0';
|
||||
|
||||
/* 小数点位置は0になる */
|
||||
*decpt = 0;
|
||||
|
||||
}
|
||||
|
||||
/* 残りのコピー桁数 */
|
||||
n = ndigit + pos;
|
||||
|
||||
/* 格納先にコピー */
|
||||
while (n-- > 0) {
|
||||
|
||||
/* 足りない部分は0で埋める */
|
||||
if (*src == '\0') {
|
||||
while (n-- >= 0)
|
||||
*dst++ = '0';
|
||||
break;
|
||||
}
|
||||
|
||||
/* 変換文字列からコピー */
|
||||
*dst++ = *src++;
|
||||
|
||||
}
|
||||
|
||||
/* 丸める */
|
||||
*decpt += (figup = _round (buffer, dst, *src));
|
||||
|
||||
/* 繰り上がりがあれば末尾に0を追加する */
|
||||
if (figup)
|
||||
*dst++ = '0';
|
||||
|
||||
/* 終端に NUL を打つ */
|
||||
*dst = '\0';
|
||||
|
||||
/* アドレスを返す */
|
||||
return buffer;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue