Add FPDF_FreeDefaultSystemFontInfo API

Added method that will cast into FPDF_SYSFONTINFO_DEFAULT and delete.
This will allow using FPDF_GetDefaultSystemFontInfo() without memory
management problems.

Review-Url: https://codereview.chromium.org/2485283002
diff --git a/fpdfsdk/fpdfview_c_api_test.c b/fpdfsdk/fpdfview_c_api_test.c
index a48ddb9..afc357f 100644
--- a/fpdfsdk/fpdfview_c_api_test.c
+++ b/fpdfsdk/fpdfview_c_api_test.c
@@ -158,6 +158,7 @@
     CHK(FPDF_AddInstalledFont);
     CHK(FPDF_SetSystemFontInfo);
     CHK(FPDF_GetDefaultSystemFontInfo);
+    CHK(FPDF_FreeDefaultSystemFontInfo);
 
     // fpdf_text.h
     CHK(FPDFText_LoadPage);