Code Monkey home page Code Monkey logo

Comments (3)

lumaro77 avatar lumaro77 commented on June 15, 2024 1

Hi,
Thank you for your answer. I was just reviewing my own D10 exercices and found your code. I took the decision of declare (as you) a fixed size buffer (with a constant define in .h) and make a loop reading and writting "buffer size" amount of info until the file is fully read. Thank you for sharing your code.
Regards,

from 1337.

achrafelkhnissi avatar achrafelkhnissi commented on June 15, 2024

Hello Mr. Martínez

Among the instruction they gave us in the exercise ex01 in D10 they said:

You can only do this exercise by declaring a fixed-sized array. This array will have a size limited to a little less than 30ko.

Therefore I intentionally declared a fixed sized buffer in ft_cat.c line 19:

void	ft_cat(char *file_name)
{
	int		fd;
	char	buf[29000];
	int		ret;

	errno = 0;
	fd = open(file_name, O_RDWR);

Note that I forgot to mention that I didn't push this day! I skipped it.
Thank you so much for your issue report!

from 1337.

achrafelkhnissi avatar achrafelkhnissi commented on June 15, 2024

You are right! Seems like I misunderstood the exercise. I'lll make sure to correct it! thank you for pointing it out. Really appreciate it.

from 1337.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.