When this software you can check if all files that you are going to use in your website are SEO friendly. A URL is SEO friendly if it only have lower case letter a-z and we use - for split the words.

How to use:

$ ./seoFriendly path

for example: $ ./seoFriendly /var/www/website
Code: 
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "queue.h"


int createQ(Queue *q){
Node *n;
	if((n=malloc(sizeof(Node)))==NULL){
		fprintf(stderr,"Error: no enough memory");		
		return -1;
	}
	n->next=NULL;
	strcpy(n->info,"FRONT");
	q->back=n;
  	q->front=n;
	return 0;
}

int emptyQ(Queue *q){
	if(q->front==q->back){
		return 0;
	}
	else{
		return -1;
	}
}

int enqueue(Queue *q, char info[100]){
Node * n;
	if((n=malloc(sizeof(Node)))==NULL){
		fprintf(stderr,"Error: no enough memory");
		return -1;
	}

	n->next=NULL;
	strcpy(n->info,info);	
	q->back->next=n;
	q->back=n;
	return 0;
}

Node * dequeue(Queue *q){
	Node * n;	
	if(emptyQ(q)==0){
		fprintf(stderr,"Error: queue empty");
	}		
	n=q->front->next;	
	q->front->next=q->front->next->next;
        if(q->front->next==NULL){
            q->back=q->front;
        }
	return n;
}
EasyMoney Reviewed by EasyMoney on . [C] SEO-Friendly-URL-Checker When this software you can check if all files that you are going to use in your website are SEO friendly. A URL is SEO friendly if it only have lower case letter a-z and we use - for split the words. #include <stdlib.h> #include <stdio.h> #include <string.h> #include "queue.h" int createQ(Queue *q){ Rating: 5