@@ -100,10 +100,9 @@ int main(int argc, char** argv) {
if(argc==2){
if(access(argv[1],F_OK)==0){/* If the file exists */
FILE*file=fopen(argv[1],"r");
charc;
while(c=fgetc(file)!=EOF){
while((c=fgetc(file))!=EOF){
buffer_insert(c,buffer);
}
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.