ObjFW  Diff

Differences From Artifact [7f5d9116f6]:

To Artifact [db7b5a88fe]:


591
592
593
594
595
596
597
598
599
600
601
602
603
604
605

	return copy;
}

static OF_INLINE void
of_explicit_memset(void *buffer_, int character, size_t length)
{
	volatile unsigned char *buffer = buffer_;

	while (buffer < (unsigned char*)buffer_ + length)
		*buffer++ = character;
}

static OF_INLINE bool
of_ascii_isalpha(char c)







|







591
592
593
594
595
596
597
598
599
600
601
602
603
604
605

	return copy;
}

static OF_INLINE void
of_explicit_memset(void *buffer_, int character, size_t length)
{
	volatile unsigned char *buffer = (volatile unsigned char*)buffer_;

	while (buffer < (unsigned char*)buffer_ + length)
		*buffer++ = character;
}

static OF_INLINE bool
of_ascii_isalpha(char c)