次のコードを検討してください
// BOGP.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "gmp-static\gmp.h"
#include <stdlib.h> /* For _MAX_PATH definition */
#include <stdio.h>
#include <malloc.h>
#define F(x) mpf_t x; mpf_init( x );
int main(int argc, char* argv[])
{
F(foo);
char * buff;
mp_exp_t exp;
mpf_init_set_str( foo, "123", 10 );
buff = mpf_get_str(NULL, &exp, 10, 0, foo);
puts( buff );
puts("\n");
free(buff);
mpf_init_set_str( foo, "-123", 10 );
buff = mpf_get_str(NULL, &exp, 10, 0, foo);
puts( buff );
puts("\n");
free(buff);
mpf_init_set_str( foo, "+123", 10 );
buff = mpf_get_str(NULL, &exp, 10, 0, foo);
puts( buff );
puts("\n");
free( buff );
}
最初のインスタンスでは、mpf_get_str 呼び出しの後、buff に "123" が含まれています。2 番目の buff には「-123」が含まれています。しかし、3 番目の buff には空の文字列 ("") が含まれています。
これは GMP 4.2.4 を使用しています。もう一度マニュアルを調べる必要があるかもしれませんが、先頭の「+」は先頭の「-」と同じくらい簡単に処理されると思っていたでしょう。