fork download
  1. // Online C compiler to run C program online
  2. #include <stdio.h>
  3. #include <string.h>
  4.  
  5. void process(char *b, int size){
  6. static char buffer[512];
  7. static int count = 0;
  8.  
  9. char tmp[128];
  10. int i;
  11.  
  12. memcpy(buffer + count, b, size);
  13. count += size;
  14.  
  15. int start = 0;
  16. for (i = 0; i < count; i++){
  17. if (buffer[i] == '\n'){
  18. memcpy(tmp, buffer + start, i - start);
  19. tmp[i-start] = 0;
  20. //String s(tmp);
  21. //Serial.println(s);
  22. printf("%s\n",tmp);
  23. start = i + 1;
  24. }
  25. }
  26.  
  27. for (i = start; i < count; i++){
  28. buffer[i - start] = buffer[start];
  29. }
  30.  
  31. count = count - start;
  32. }
  33.  
  34. int main() {
  35. char s1[] = "{'address':'24:58:7c:d3:87:de', 'rssi':-83, 'man_data':'2A', 'tick': 9224887823}\n{'address':'24:58:7c:d3:87:de', 'rssi':-84, ";
  36. char s2[] = "aaa\nbbb";
  37. char s3[] = "ccc\nddd\n";
  38. // Write C code here
  39. //printf("Try programiz.pro");
  40. process(s1, strlen(s1));
  41. process(s2, strlen(s2));
  42. process(s3, strlen(s3));
  43.  
  44. return 0;
  45. }
Success #stdin #stdout 0.01s 5284KB
stdin
45
stdout
{'address':'24:58:7c:d3:87:de', 'rssi':-83, 'man_data':'2A', 'tick': 9224887823}
{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{aaa
bbbccc
ddd