This might allow compilers that support the anotation to make better
choices when optimizing, and all these functions meet the requirements
for being marked pure.
Signed-off-by: Cody P Schafer <dev@codyps.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
return 1;
if (strcmp(argv[1], "depends") == 0) {
return 1;
if (strcmp(argv[1], "depends") == 0) {
+ printf("ccan/compiler");
#define CCAN_MEM_H
#include "config.h"
#define CCAN_MEM_H
#include "config.h"
+#include <ccan/compiler/compiler.h>
#include <string.h>
#include <stdbool.h>
#if !HAVE_MEMMEM
#include <string.h>
#include <stdbool.h>
#if !HAVE_MEMMEM
void *memmem(const void *haystack, size_t haystacklen,
const void *needle, size_t needlelen);
#endif
#if !HAVE_MEMRCHR
void *memmem(const void *haystack, size_t haystacklen,
const void *needle, size_t needlelen);
#endif
#if !HAVE_MEMRCHR
void *memrchr(const void *s, int c, size_t n);
#endif
void *memrchr(const void *s, int c, size_t n);
#endif
void *mempbrkm(const void *data, size_t len, const void *accept, size_t accept_len);
/**
void *mempbrkm(const void *data, size_t len, const void *accept, size_t accept_len);
/**
* printf("Nada\n");
* }
*/
* printf("Nada\n");
* }
*/
static inline char *mempbrk(const void *data, size_t len, const char *accept)
{
return mempbrkm(data, len, accept, strlen(accept));
static inline char *mempbrk(const void *data, size_t len, const char *accept)
{
return mempbrkm(data, len, accept, strlen(accept));
* printf("Found %c after trimming spaces\n", *r);
* }
*/
* printf("Found %c after trimming spaces\n", *r);
* }
*/
void *memcchr(void const *data, int c, size_t data_len);
/**
void *memcchr(void const *data, int c, size_t data_len);
/**
* printf("memory blocks are the same!\n");
* }
*/
* printf("memory blocks are the same!\n");
* }
*/
static inline bool memeq(const void *a, size_t al, const void *b, size_t bl)
{
return al == bl && !memcmp(a, b, bl);
static inline bool memeq(const void *a, size_t al, const void *b, size_t bl)
{
return al == bl && !memcmp(a, b, bl);
* printf("somebytes starts with otherbytes!\n");
* }
*/
* printf("somebytes starts with otherbytes!\n");
* }
*/
static inline bool memstarts(void const *data, size_t data_len,
void const *prefix, size_t prefix_len)
{
static inline bool memstarts(void const *data, size_t data_len,
void const *prefix, size_t prefix_len)
{
* printf("somebytes == 'foo'!\n");
* }
*/
* printf("somebytes == 'foo'!\n");
* }
*/
static inline bool memeqstr(const void *data, size_t length, const char *string)
{
return memeq(data, length, string, strlen(string));
static inline bool memeqstr(const void *data, size_t length, const char *string)
{
return memeq(data, length, string, strlen(string));
* printf("somebytes starts with 'It'\n");
* }
*/
* printf("somebytes starts with 'It'\n");
* }
*/
static inline bool memstarts_str(const void *a, size_t al, const char *s)
{
return memstarts(a, al, s, strlen(s));
static inline bool memstarts_str(const void *a, size_t al, const char *s)
{
return memstarts(a, al, s, strlen(s));
* Returns true if @suffix appears as a substring at the end of @s,
* false otherwise.
*/
* Returns true if @suffix appears as a substring at the end of @s,
* false otherwise.
*/
static inline bool memends(const void *s, size_t s_len, const void *suffix, size_t suffix_len)
{
return (s_len >= suffix_len) && (memcmp((const char *)s + s_len - suffix_len,
static inline bool memends(const void *s, size_t s_len, const void *suffix, size_t suffix_len)
{
return (s_len >= suffix_len) && (memcmp((const char *)s + s_len - suffix_len,