Skip to content

Commit

Permalink
feat: add string
Browse files Browse the repository at this point in the history
  • Loading branch information
Gscienty committed Jul 2, 2019
1 parent 43c54e5 commit 4b2d6b7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions string.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#ifndef _LIBGRAPHQL_STRING_H
#define _LIBGRAPHQL_STRING_H

typedef struct graphql_str_s graphql_str_t;
struct graphql_str_s {
char *str;
int len;
};

#endif

0 comments on commit 4b2d6b7

Please sign in to comment.