ack/lang/basic/lib/oct.c

29 lines
387 B
C
Raw Normal View History

#include <stdlib.h>
#include <stdio.h>
#include "bc_string.h"
1984-11-29 14:22:02 +00:00
1994-06-24 11:31:16 +00:00
/* $Id$ */
1984-11-29 14:22:02 +00:00
2016-12-12 20:15:25 +00:00
String *_oct(int i)
1984-11-29 14:22:02 +00:00
{
char buffer[30];
sprintf(buffer,"%o",i);
return( (String *)_newstr(buffer));
}
2016-12-12 20:15:25 +00:00
String *_hex(int i)
1984-11-29 14:22:02 +00:00
{
char buffer[30];
1988-07-04 11:44:03 +00:00
1984-11-29 14:22:02 +00:00
sprintf(buffer,"%x",i);
return( (String *)_newstr(buffer));
}
1988-07-04 11:44:03 +00:00
2016-12-12 20:15:25 +00:00
String *_nstr(double f)
1988-07-04 11:44:03 +00:00
{
char buffer[80];
_str(f, buffer);
return (String *) _newstr(buffer);
}