Skip to content

Commit

Permalink
Remove references to MQTT from readme headers (#130)
Browse files Browse the repository at this point in the history
* Remove references to MQTT from readme headers

* Move parenthesis
  • Loading branch information
muneebahmed10 authored Dec 9, 2020
1 parent 037a251 commit fdfb78d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion source/include/stdbool.readme
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

/*******************************************************************************
* This file contains the definitions specified in stdbool.h. It is provided to
* allow coreMQTT to be built using compilers that do not provide their own
* allow the library to be built using compilers that do not provide their own
* stdbool.h defintion.
*
* To use this file:
Expand Down
6 changes: 3 additions & 3 deletions source/include/stdint.readme
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

/*******************************************************************************
* THIS IS NOT A FULL stdint.h IMPLEMENTATION - It only contains the definitions
* necessary to build the coreMQTT code. It is provided to allow coreMQTT to be
* built using compilers that do not provide their own stdint.h definition.
* necessary to build the library code. It is provided to allow the library to
* be built using compilers that do not provide their own stdint.h definition.
*
* To use this file:
*
Expand All @@ -26,7 +26,7 @@ typedef long long int64_t;
typedef unsigned long long uint64_t;

#define INT8_MAX ( ( signed char ) 127 )
#define UINT8_MAX ( ( unsigned char ) ) 255
#define UINT8_MAX ( ( unsigned char ) 255 )
#define INT16_MAX ( ( short ) 32767 )
#define UINT16_MAX ( ( unsigned short ) 65535 )
#define INT32_MAX 2147483647L
Expand Down

0 comments on commit fdfb78d

Please sign in to comment.