ack/lang/basic/lib/oct.c

27 lines
369 B
C
Raw Normal View History

#include <stdlib.h>
#include <stdio.h>
#include "lib.h"
1984-11-29 14:22:02 +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));
1984-11-29 14:22:02 +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
sprintf(buffer, "%x", i);
return ((String*)_newstr(buffer));
1984-11-29 14:22:02 +00:00
}
1988-07-04 11:44:03 +00:00
String* _nstr(double f)
1988-07-04 11:44:03 +00:00
{
char buffer[80];
_str(f, buffer);
return (String*)_newstr(buffer);
1988-07-04 11:44:03 +00:00
}