ObjFW  Diff

Differences From Artifact [ee9dff4839]:

To Artifact [618fea6efc]:


365
366
367
368
369
370
371
372

373
374
375
376
377
378

379
380
381
382

383
384
385
386
387
388
389
390

391
392

393
394

395
396
397
398
399
400
401
402
403


404
405
406

407
408
409
410
411
412
413
365
366
367
368
369
370
371

372






373


374

375
376
377






378


379
380

381
382
383







384
385

386

387
388
389
390
391
392
393
394







-
+
-
-
-
-
-
-
+
-
-

-
+


-
-
-
-
-
-
+
-
-
+

-
+


-
-
-
-
-
-
-
+
+
-

-
+








DESTRUCTOR_P(ObjFW, 4000)
{
	dtor();
}
#endif

int
void *
of_application_main(int *argc, char ***argv,
    id <OFApplicationDelegate> delegate)
{
	return glue_of_application_main(argc, argv, delegate);
}

of_malloc(size_t count, size_t size)
const char *
of_http_request_method_to_string(of_http_request_method_t method)
{
	return glue_of_http_request_method_to_string(method);
	return glue_of_malloc(count, size);
}

of_http_request_method_t
of_http_request_method_from_string(OFString *string)
{
	return glue_of_http_request_method_from_string(string);
}

void *
OFString *
of_http_status_code_to_string(short code)
of_calloc(size_t count, size_t size)
{
	return glue_of_http_status_code_to_string(code);
	return glue_of_calloc(count, size);
}

size_t
of_sizeof_type_encoding(const char *type)
{
	return glue_of_sizeof_type_encoding(type);
}

size_t
void *
of_realloc(void *pointer, size_t count, size_t size)
of_alignof_type_encoding(const char *type)
{
	return glue_of_alignof_type_encoding(type);
	return glue_of_realloc(pointer, count, size);
}

uint32_t *
of_hash_seed_ref(void)
{
	return glue_of_hash_seed_ref();
}
441
442
443
444
445
446
447





































448
449
450
451
452
453
454
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472







+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+







}

void
of_logv(OFConstantString *format, va_list arguments)
{
	glue_of_logv(format, arguments);
}

int
of_application_main(int *argc, char ***argv,
    id <OFApplicationDelegate> delegate)
{
	return glue_of_application_main(argc, argv, delegate);
}

const char *
of_http_request_method_to_string(of_http_request_method_t method)
{
	return glue_of_http_request_method_to_string(method);
}

of_http_request_method_t
of_http_request_method_from_string(OFString *string)
{
	return glue_of_http_request_method_from_string(string);
}

OFString *
of_http_status_code_to_string(short code)
{
	return glue_of_http_status_code_to_string(code);
}

size_t
of_sizeof_type_encoding(const char *type)
{
	return glue_of_sizeof_type_encoding(type);
}

size_t
of_alignof_type_encoding(const char *type)
{
	return glue_of_alignof_type_encoding(type);
}

of_string_encoding_t
of_string_parse_encoding(OFString *string)
{
	return glue_of_string_parse_encoding(string);
}