1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
/*
Copyright (C) 2019 Julian RĂ¼th
This file is part of Arb.
Arb is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version. See <http://www.gnu.org/licenses/>.
*/
#include <string.h>
#include "arb.h"
#include "arf.h"
#include "mag.h"
char *
arb_dump_str(const arb_t x)
{
char * mid;
char * mag;
size_t res_len;
char * res;
mid = arf_dump_str(arb_midref(x));
mag = mag_dump_str(arb_radref(x));
res_len = strlen(mid) + 1 + strlen(mag);
res = (char*)flint_malloc(res_len + 1);
strcpy(res, mid);
strcat(res, " ");
strcat(res, mag);
flint_free(mid);
flint_free(mag);
return res;
}
|