예제 #1
0
파일: string_test.c 프로젝트: Zerqkboo/grpc
int main(int argc, char **argv) {
  grpc_test_init(argc, argv);
  test_strdup();
  test_hexdump();
  test_parse_uint32();
  test_asprintf();
  return 0;
}
예제 #2
0
int main(int argc, char **argv) {
  grpc_test_init(argc, argv);
  test_strdup();
  test_dump();
  test_dump_slice();
  test_parse_uint32();
  test_asprintf();
  test_strjoin();
  test_strjoin_sep();
  test_strsplit();
  return 0;
}
예제 #3
0
파일: string_test.c 프로젝트: izouxv/grpc
int main(int argc, char **argv) {
  grpc_test_init(argc, argv);
  test_strdup();
  test_dump();
  test_parse_uint32();
  test_asprintf();
  test_strjoin();
  test_strjoin_sep();
  test_ltoa();
  test_int64toa();
  test_leftpad();
  test_stricmp();
  return 0;
}