Acknowledge Polling Wire (MCP79410 related)

Hello,
I'm trying to complete a driver for the MCP79410, in order to use the component for a project of mine.
Basically all of the registers settings are ok (I used a library I found online to start, and then completed it), but I'm not able to understand how I should work to complete the EEPROM driver.
Here is a (maybe too much) detailed explanation. (Component datasheet for reference)
Normal usage
What my driver normally does, to write a byte is the following:

void writeByte(const uint8_t adr, const uint8_t data) {
  
	Wire.beginTransmission(0x6F);
	Wire.write(adr);
	Wire.write(data);
	Wire.endTransmission();	

}

and to read:

uint8_t readByte(const uint8_t adr) {
	uint8_t data;
	
	Wire.beginTransmission(0x6F);
	Wire.write(adr);
	Wire.endTransmission();
	
	Wire.requestFrom((uint8_t)_address,(uint8_t)1);
	while (Wire.available()) data=Wire.read();
	
	return data;

EEPROM Usage
Browsing through the documentation for the MCP79410, I found, in sec 6.2.4 the possibility that the chip won't be responsive for some cycles, due to a previous sequential write. What the manual suggests is to perform an "acknowledge polling".
I'm really a noob regarding "Wire", and I am not sure how to do it (with or without wire).
Can someone help me, or at least give me directions?
Thanks.