Use nullptr instead of 0/NULL. (#1435)

* Use nullptr instead of 0/NULL.

* Update test-name-table.cc
diff --git a/src/test-name-table.cc b/src/test-name-table.cc
index 58c98f0..e40be6e 100644
--- a/src/test-name-table.cc
+++ b/src/test-name-table.cc
@@ -24,7 +24,7 @@
  * Google Author(s): Behdad Esfahbod
  */
 
-#include "hb.h"
+#include "hb.hh"
 #include "hb-ot.h"
 
 #include <stdlib.h>
@@ -41,7 +41,7 @@
   hb_blob_t *blob = hb_blob_create_from_file (argv[1]);
   hb_face_t *face = hb_face_create (blob, 0 /* first face */);
   hb_blob_destroy (blob);
-  blob = NULL;
+  blob = nullptr;
 
   unsigned int count;
   const hb_ot_name_entry_t *entries = hb_ot_name_list_names (face, &count);