DCS_TEAM / GSM_PUSHING_BOX_STATE_MACHINE

Fork of GSM_Library by DCS_TEAM

Files at this revision

API Documentation at this revision

Comitter:
es_marble
Date:
Thu Mar 05 21:29:17 2015 +0000
Parent:
4:3264bc92993c
Child:
6:3ccc86304c2c
Commit message:
v4

Changed in this revision

gsmqueue.cpp Show annotated file Show diff for this revision Revisions of this file
gsmqueue.h Show annotated file Show diff for this revision Revisions of this file
--- a/gsmqueue.cpp	Thu Mar 05 21:27:47 2015 +0000
+++ b/gsmqueue.cpp	Thu Mar 05 21:29:17 2015 +0000
@@ -19,7 +19,7 @@
 //Find an occurrence of the given string in the buffer.
 //Only advance queueHead until a matching string is found.
 //The given string terminates in NULL (\0)
-bool findInQueue(char* str, int strLen)
+bool findInQueue(char* str)
 {
     //Check that string to find is not empty
     if (*str == NULL) return false;
--- a/gsmqueue.h	Thu Mar 05 21:27:47 2015 +0000
+++ b/gsmqueue.h	Thu Mar 05 21:29:17 2015 +0000
@@ -16,7 +16,7 @@
 
 //Find an occurrence of the given string in the buffer.
 //Only advance queueHead until a matching string is found.
-bool findInQueue(char* str, int strLen);
+bool findInQueue(char* str);
 
 //Increment queue index by 1, auxiliar function
 char* incrementIndex(char* pointerToIncrement);